From 23b7eb677d87a79179d5e71aba547c4c7794b215 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 15 Jun 2007 23:05:46 +0000 Subject: Finally bite the bullet and make the major change: split the clang namespace out of the llvm namespace. This makes the clang namespace be a sibling of llvm instead of being a child. The good thing about this is that it makes many things unambiguous. The bad things is that many things in the llvm namespace (notably data structures like smallvector) now require an llvm:: qualifier. IMO, libsystem and libsupport should be split out of llvm into their own namespace in the future, which will fix this issue. llvm-svn: 39659 --- clang/CodeGen/CodeGenModule.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'clang/CodeGen/CodeGenModule.cpp') diff --git a/clang/CodeGen/CodeGenModule.cpp b/clang/CodeGen/CodeGenModule.cpp index fa1a3d2332e..648e0ad30a5 100644 --- a/clang/CodeGen/CodeGenModule.cpp +++ b/clang/CodeGen/CodeGenModule.cpp @@ -14,7 +14,6 @@ #include "CodeGenModule.h" #include "CodeGenFunction.h" #include "clang/AST/Decl.h" -using namespace llvm; using namespace clang; using namespace CodeGen; -- cgit v1.2.3