Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Netbeans 7.2 shows "Unable to resolve identifier" , although build is successful

I'm using the Netbeans IDE 7.2 with C/C++ plugin (last version 1.18.1.1) and if I build my project everything is fine but the IDE show me errors (e.g. unable to resolve identifier ...)

Anyone else have this bug and how can I solve it?

like image 633
leon22 Avatar asked Feb 16 '13 17:02

leon22


2 Answers

Here's an excerpt from my answer to another question.

Unresolved Identifier

If the source of the .cpp file looks like this

enter image description here

Click with the right mouse button on your project.
Check C/C++ Code As...
Run Reparse Project.

enter image description here

If that is not enough.
Go to Project Properties
Fill in the Include input field as described.

enter image description here

Set the include path correct.

I hope that can help you.

like image 102
moskito-x Avatar answered Sep 19 '22 11:09

moskito-x


i had the same problem, but i recognized it appears after i changed properties-> c++ compiler -> Compilation Line -> additional options to -std=c++11. if change the settings to default the error "unable to resolve identifier" disapears.

like image 34
Rafa Avatar answered Sep 17 '22 11:09

Rafa