aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/User.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/User.h')
-rw-r--r--include/llvm/User.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/User.h b/include/llvm/User.h
index aba56d5..cdd9b53 100644
--- a/include/llvm/User.h
+++ b/include/llvm/User.h
@@ -22,6 +22,8 @@
#include "llvm/Value.h"
#include <vector>
+namespace llvm {
+
class User : public Value {
User(const User &); // Do not implement
protected:
@@ -110,4 +112,6 @@ template<> struct simplify_type<User::const_op_iterator> {
template<> struct simplify_type<const User::const_op_iterator>
: public simplify_type<User::const_op_iterator> {};
+} // End llvm namespace
+
#endif