[llvm-commits] CVS: llvm/include/llvm/AbstractTypeUser.h

Chris Lattner lattner at cs.uiuc.edu
Fri Jul 25 12:40:01 PDT 2003


Changes in directory llvm/include/llvm:

AbstractTypeUser.h updated: 1.9 -> 1.10

---
Log message:

Remove inline declarations that GCC 3.3 doesn't like without a body


---
Diffs of the changes:

Index: llvm/include/llvm/AbstractTypeUser.h
diff -u llvm/include/llvm/AbstractTypeUser.h:1.9 llvm/include/llvm/AbstractTypeUser.h:1.10
--- llvm/include/llvm/AbstractTypeUser.h:1.9	Fri Jul 25 12:34:16 2003
+++ llvm/include/llvm/AbstractTypeUser.h	Fri Jul 25 12:39:33 2003
@@ -72,8 +72,8 @@
 
   // These functions are defined at the bottom of Type.h.  See the comment there
   // for justification.
-  inline void addUser();
-  inline void removeUser();
+  void addUser();
+  void removeUser();
 public:
   // ctor - Add use to type if abstract.  Note that Ty must not be null
   inline PATypeHandle(const Type *ty, AbstractTypeUser *user) 
@@ -121,7 +121,7 @@
   // this, we MUST remove ourself from the AbstractTypeUser list, even though
   // the type is apparently concrete.
   //
-  inline void removeUserFromConcrete();
+  void removeUserFromConcrete();
 };
 
 





More information about the llvm-commits mailing list