summaryrefslogtreecommitdiff
path: root/include/llvm/Argument.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Argument.h')
-rw-r--r--include/llvm/Argument.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Argument.h b/include/llvm/Argument.h
index 2d70f5314b..ab4ee1bf0e 100644
--- a/include/llvm/Argument.h
+++ b/include/llvm/Argument.h
@@ -17,6 +17,8 @@
#include "llvm/Value.h"
+namespace llvm {
+
class Argument : public Value { // Defined in the Function.cpp file
Function *Parent;
@@ -56,4 +58,6 @@ public:
}
};
+} // End llvm namespace
+
#endif