diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-18 19:22:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-18 19:22:36 +0000 |
commit | 893f025262574d01de5585d64860673e13d77ee5 (patch) | |
tree | 314557b23cee4925a65200875670c7966072df0b /lib/Bytecode/Reader/ReaderInternals.h | |
parent | c500cf2fab4ffbac98894168b866f51e34e253f6 (diff) | |
download | external_llvm-893f025262574d01de5585d64860673e13d77ee5.zip external_llvm-893f025262574d01de5585d64860673e13d77ee5.tar.gz external_llvm-893f025262574d01de5585d64860673e13d77ee5.tar.bz2 |
Detemplatize the PATypeHandle class, which was only really instantiated on 'Type'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6774 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/ReaderInternals.h')
-rw-r--r-- | lib/Bytecode/Reader/ReaderInternals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Reader/ReaderInternals.h b/lib/Bytecode/Reader/ReaderInternals.h index a8ee6fc..e09e5e5 100644 --- a/lib/Bytecode/Reader/ReaderInternals.h +++ b/lib/Bytecode/Reader/ReaderInternals.h @@ -104,7 +104,7 @@ private: // All of this data is transient across calls to ParseBytecode // TypesLoaded - This vector mirrors the Values[TypeTyID] plane. It is used // to deal with forward references to types. // - typedef std::vector<PATypeHandle<Type> > TypeValuesListTy; + typedef std::vector<PATypeHandle> TypeValuesListTy; TypeValuesListTy ModuleTypeValues; TypeValuesListTy FunctionTypeValues; |