aboutsummaryrefslogtreecommitdiff
path: root/include/Support/STLExtras.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Support/STLExtras.h')
-rw-r--r--include/Support/STLExtras.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/Support/STLExtras.h b/include/Support/STLExtras.h
index 28c46e3d99..06a15734a7 100644
--- a/include/Support/STLExtras.h
+++ b/include/Support/STLExtras.h
@@ -21,6 +21,8 @@
#include "Support/iterator"
#include "boost/type_traits/transform_traits.hpp"
+namespace llvm {
+
//===----------------------------------------------------------------------===//
// Extra additions to <functional>
//===----------------------------------------------------------------------===//
@@ -278,4 +280,6 @@ inline tier<T1, T2> tie(T1& f, T2& s) {
return tier<T1, T2>(f, s);
}
+} // End llvm namespace
+
#endif