Expose typedefs

llvm-svn: 738
This commit is contained in:
Chris Lattner 2001-10-13 06:17:50 +00:00
parent bdc7ff5416
commit bd71b7f4ec
1 changed files with 2 additions and 0 deletions

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;