Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Re: Regression in name resolution


On Sun, May 4, 2008 at 6:24 PM, Schaefer, Doug <Doug.Schaefer@xxxxxxxxxxxxx> wrote:
I'm sure everyone's seen this but for those who haven't, the CVS logs are available off the build page.
 
The last person to touch the DOM seems to be Markus on the 29'th. I'm not sure if you mean after that or not.

No, I didn't mean that. This problem gets even more complicated by the fact that vector::push_back does get resolved in simple projects but not in a large one.
 
 
Cheers,
Doug.

-sergey


From: cdt-dev-bounces@xxxxxxxxxxx [mailto:cdt-dev-bounces@xxxxxxxxxxx] On Behalf Of Sergey Prigogin
Sent: Sunday, May 04, 2008 7:46 PM
To: Schorn, Markus; Andrew Ferguson
Cc: CDT General developers list.
Subject: [cdt-dev] Re: Regression in name resolution

One example of the breakage:
#include <vector>

void main() {
  std::vector<int> x;
  x.push_back(1);
}

push_back used to be resolved. Now it is not.

-sergey

On Sun, May 4, 2008 at 4:27 PM, Sergey Prigogin <eclipse.sprigogin@xxxxxxxxx> wrote:
I've noticed that sometime between 4/29 and 5/2 number of unresolved names on my code base jumped by 37%. I haven't been able to identify a specific change that caused the jump yet. Digging into it.

-sergey


_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev



Back to the top