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 225415 - [73cat] Unable to resolve identifier "second" in ::boost::smatch
Summary: [73cat] Unable to resolve identifier "second" in ::boost::smatch
Status: CLOSED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 7.4
Hardware: PC Other
: P3 normal (vote)
Assignee: petrk
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-01-28 15:03 UTC by kosmonaffft
Modified: 2015-05-28 07:11 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
Bug screenshot... (13.66 KB, image/png)
2013-01-28 15:03 UTC, kosmonaffft
Details

Note You need to log in before you can comment on or make changes to this bug.
Description kosmonaffft 2013-01-28 15:03:32 UTC
Created attachment 130727 [details]
Bug screenshot...

Hello all...
NetBeans cannot parse identifier "second" in ::boost::smatch, see details on screenshot...
Comment 1 petrk 2014-04-04 14:43:25 UTC
More simple test case:
========================================================
#include <vector>

struct AAA {
    int foo() const;
};

int main() {
    AAA a;
    std::vector<AAA>::allocator_type::const_reference t = a;
    t.foo(); // foo is unresolved
    return 0;
}
========================================================
Comment 2 petrk 2014-10-09 20:36:55 UTC
Fixed in http://hg.netbeans.org/cnd-main/rev/58b3b838e2c7

Unfortunately for now fix would be available under flag because of potential performance issues. Please, use the next parameter when starting IDE
-J-Dcnd.modelimpl.instantiation.full_forwards_search=true
Comment 3 Quality Engineering 2014-10-11 11:30:27 UTC
Integrated into 'main-silver', will be available in build *201410110714* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/58b3b838e2c7
User: Petr Kudryavtsev <petrk@netbeans.org>
Log: Fixed #225415 - [73cat] Unable to resolve identifier "second" in ::boost::smatch
-- fixed with flag