This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 243590 - Unresolved identifier after save
Summary: Unresolved identifier after save
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 8.0
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-05 11:42 UTC by Yankes
Modified: 2014-09-02 14:58 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Yankes 2014-04-05 11:42:23 UTC
--->%--->%--->%---
#include <vector>

struct M
{
	double P;
};

int main(int argc, char** argv)
{
	std::vector<M>::const_iterator k;
	double lon2 = (*k).P; //unable to resolve identifier `P`
}
--->%--->%--->%---

"Reparse Project" fix that bug but after any edit and save its come back.
std::vector is form cygwin64 gcc 4.8.2 or mingw gcc 4.7.0
Comment 1 petrk 2014-08-15 12:49:11 UTC
Please, check it in dev version as I cannot reproduce the problem.
Comment 2 Yankes 2014-08-24 14:12:28 UTC
Someone else fix it probably. In updated 8.0 I dont have this bug.