Go to file
Francois Pichet efb1af9ae8 Emulate a MSVC bug where if during an using declaration name lookup, the declaration found is unaccessible (private) and that declaration was bring into scope via another using declaration whose target declaration is accessible (public) then no error is generated.
Example:
class A { public: int f();  };
class B : public A { private: using A::f; };
class C : public B { private: using B::f; };

Here, B::f is private so this should fail in Standard C++, but because B::f refers to A::f which is public MSVC accepts it.

This fixes 1 error when parsing MFC code with clang.

llvm-svn: 131896
2011-05-23 03:43:44 +00:00
clang Emulate a MSVC bug where if during an using declaration name lookup, the declaration found is unaccessible (private) and that declaration was bring into scope via another using declaration whose target declaration is accessible (public) then no error is generated. 2011-05-23 03:43:44 +00:00
compiler-rt clang/darwin: Tweak CheckArches function to use CC and to not spew output. 2011-05-19 18:02:55 +00:00
debuginfo-tests Clang is now correctly marking this as a class, so update the test case accordingly 2011-05-21 18:17:06 +00:00
libcxx Fix const correctness bug in bind involving reference_wrapper found by Jonathan Sauer 2011-05-22 15:07:43 +00:00
libcxxabi Add goal 2011-05-19 23:38:38 +00:00
lldb Added new lldb_private::Process memory read/write functions to stop a bunch 2011-05-22 22:46:53 +00:00
llvm Fix <rdar://problem/9476260> by having tail calls always generate 32-bit branches 2011-05-23 01:57:17 +00:00
polly www: Colorize TODO status 2011-05-14 19:02:51 +00:00