Disambiguate the name lookup for the data type of anon_uint variable.
llvm-svn: 119353
diff --git a/lldb/test/namespace/main.cpp b/lldb/test/namespace/main.cpp
index 24faf65..73fd15f 100644
--- a/lldb/test/namespace/main.cpp
+++ b/lldb/test/namespace/main.cpp
@@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===//
namespace {
- typedef unsigned int uint_t;
+ typedef unsigned int my_uint_t;
int i; // Find the line number for anonymous namespace variable i.
}
@@ -53,7 +53,7 @@
int Foo::myfunc(int a)
{
- ::uint_t anon_uint = 0;
+ ::my_uint_t anon_uint = 0;
A::uint_t a_uint = 1;
B::uint_t b_uint = 2;
Y::uint_t y_uint = 3;