From d67772defd915bf67a526f08eb3621662940205f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 12 Mar 2004 19:51:16 +0000 Subject: [PATCH] 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 --- include/llvm/Module.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1