Expose typedefs
authorChris Lattner <sabre@nondot.org>
Sat, 13 Oct 2001 06:17:50 +0000 (06:17 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 13 Oct 2001 06:17:50 +0000 (06:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@738 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/SymbolTable.h

index 69ff3ddad57f98f924b4b0ad3f1257406a879747..c8eb8206ece365428ba5c651a5924f1950d5869c 100644 (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;