Reputation: 1034
I am writing C++ code in Xcode, but when I write the code wrong (like cout>>"xyz") , Xcode does not show me the Error message. Is there any way that I get the error message?
Upvotes: 2
Views: 1696
Reputation: 2282
There's a "Show live issues" setting in the General tab of the Xcode settings (⌘ + comma). That should do the trick.
It will then look like this in Xcode:
Upvotes: 1