diff options
author | Chris Lattner <sabre@nondot.org> | 2004-03-12 19:51:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-03-12 19:51:16 +0000 |
commit | d67772defd915bf67a526f08eb3621662940205f (patch) | |
tree | f30c9e88f6456ec2465816275eb8af94d773c10b /include/llvm/Module.h | |
parent | cd16119a4323c2656aef0232a2eee137bb975435 (diff) |
Fix PR266: Make Module Not Inherit From Annotable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12339 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Module.h')
-rw-r--r-- | include/llvm/Module.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Module.h b/include/llvm/Module.h index 352ce20fcc..5c27d3b55f 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -43,7 +43,7 @@ template<> struct ilist_traits<GlobalVariable> static iplist<GlobalVariable> &getList(Module *M); }; -struct Module : public Annotable { +struct Module { typedef iplist<GlobalVariable> GlobalListType; typedef iplist<Function> FunctionListType; |