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

Summary: Unresolved identifier after save
Product: cnd Reporter: Yankes
Component: Code ModelAssignee: issues@cnd <issues>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P3    
Version: 8.0   
Hardware: PC   
OS: Windows 7   
Issue Type: DEFECT Exception Reporter:

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.