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 151175 - Unresolved ids in sequentially included headers
Summary: Unresolved ids in sequentially included headers
Status: RESOLVED DUPLICATE of bug 194769
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 6.x
Hardware: Sun All
: P3 blocker (vote)
Assignee: nnnnnk
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-10-23 16:21 UTC by nnnnnk
Modified: 2011-01-27 12:46 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 nnnnnk 2008-10-23 16:21:14 UTC
There are unresolved ids in sequentially included headers.

newfile1.h
#include <vector>
using namespace std;
newfile.h
int foo() {
    vector<int> v; // unresolved
}
newfile.cpp
#include "newfile1.h"
#include "newfile.h"
int main(){
    return 0;
}
Comment 1 Vladimir Voskresensky 2009-09-25 14:06:07 UTC
consider for the next release due to lack of resources
Comment 2 nnnnnk 2011-01-27 12:46:24 UTC

*** This bug has been marked as a duplicate of bug 194769 ***