Expose typedefs

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@738 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-10-13 06:17:50 +00:00
parent 7502f635c6
commit 067238d5d9

View File

@ -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;