diff options
-rw-r--r-- | include/llvm/SymbolTable.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/SymbolTable.h b/include/llvm/SymbolTable.h index 69ff3ddad5..c8eb8206ec 100644 --- a/include/llvm/SymbolTable.h +++ b/include/llvm/SymbolTable.h @@ -33,8 +33,10 @@ class Type; // class SymbolTable : public AbstractTypeUser, public map<const Type *, map<const string, Value *> > { +public: typedef map<const string, Value *> VarMap; typedef map<const Type *, VarMap> super; +private: SymbolTable *ParentSymTab; |