Remove `using namespace std;` in __gnu_cxx namespace.
The `using namespace std;` opens us up to ambiguity when any of the std:: names are also present in the global namespace. Instead we should properly qualify names we use from std::. llvm-svn: 361074
Loading
Please sign in to comment