Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[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


Back to the top