aboutsummaryrefslogtreecommitdiffstats
path: root/include/Support/SetOperations.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Support/SetOperations.h')
-rw-r--r--include/Support/SetOperations.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/Support/SetOperations.h b/include/Support/SetOperations.h
index dc6e0d6..bb1e68e 100644
--- a/include/Support/SetOperations.h
+++ b/include/Support/SetOperations.h
@@ -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