aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-13 06:17:50 +0000
committerChris Lattner <sabre@nondot.org>2001-10-13 06:17:50 +0000
commit067238d5d9ba19ad235f55fe4349112b39385fae (patch)
tree9c2535e584c82b2287c91649a189e1dd8d8392fd
parent7502f635c650a535d5ae57f047627cd1b6df3216 (diff)
Expose typedefs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@738 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/SymbolTable.h2
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;