From: Chris Lattner Date: Fri, 12 Mar 2004 19:51:16 +0000 (+0000) Subject: Fix PR266: Make Module Not Inherit From Annotable X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d67772defd915bf67a526f08eb3621662940205f;p=oota-llvm.git 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 --- diff --git a/include/llvm/Module.h b/include/llvm/Module.h index 352ce20fcce..5c27d3b55f1 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -43,7 +43,7 @@ template<> struct ilist_traits static iplist &getList(Module *M); }; -struct Module : public Annotable { +struct Module { typedef iplist GlobalListType; typedef iplist FunctionListType;