diff options
-rw-r--r-- | include/llvm/Value.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Value.h b/include/llvm/Value.h index 07a61a6..85c5e76 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -8,8 +8,8 @@ #ifndef LLVM_VALUE_H #define LLVM_VALUE_H -#include <string> #include <list> +#include "llvm/Annotation.h" class User; class Type; @@ -26,7 +26,7 @@ template<class ValueSubclass, class ItemParentType, class SymTabType> // Value Class //===----------------------------------------------------------------------===// -class Value { +class Value : public Annotable { // Value's are annotable public: enum ValueTy { TypeVal, // This is an instance of Type |