Put all LLVM code into the llvm namespace, as per bug 109.
[oota-llvm.git] / include / llvm / ADT / SetOperations.h
index dc6e0d6029efa6e75857ddd5c1d75fa570879697..bb1e68e6b299c9cf443831403e4d5e3e8b850012 100644 (file)
@@ -15,6 +15,8 @@
 #ifndef SUPPORT_SETOPERATIONS_H
 #define SUPPORT_SETOPERATIONS_H
 
+namespace llvm {
+
 // set_union(A, B) - Compute A := A u B, return whether A changed.
 //
 template <class S1Ty, class S2Ty>
@@ -64,4 +66,6 @@ void set_subtract(S1Ty &S1, const S2Ty &S2) {
     S1.erase(*SI);
 }
 
+} // End llvm namespace
+
 #endif