Put all LLVM code into the llvm namespace, as per bug 109.
[oota-llvm.git] / include / Support / MallocAllocator.h
index 1ba25b0d65efd83e14df584bf9b1acd497fceda8..766a67fa22f1c5204c214be6c652e3534cb87814 100644 (file)
@@ -23,6 +23,8 @@
 #include <cstdlib>
 #include <memory>
 
+namespace llvm {
+
 template<typename T>
 struct MallocAllocator {
   typedef size_t size_type;
@@ -79,5 +81,6 @@ namespace std {
   };
 }
 
+} // End llvm namespace
 
 #endif