Remove explicit inline qualifiers when the implicit ones work just as well
authorChris Lattner <sabre@nondot.org>
Mon, 13 Oct 2003 15:30:59 +0000 (15:30 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 13 Oct 2003 15:30:59 +0000 (15:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9082 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Type.h

index f8202ae40c66c61f229663ebdef9af845d64f5b8..fe6db028b46f5ca9c8672cd38de350a14c6e84ea 100644 (file)
@@ -248,22 +248,22 @@ private:
 
     typedef TypeIterator _Self;
   public:
-    inline TypeIterator(const Type *ty, unsigned idx) : Ty(ty), Idx(idx) {}
-    inline ~TypeIterator() {}
+    TypeIterator(const Type *ty, unsigned idx) : Ty(ty), Idx(idx) {}
+    ~TypeIterator() {}
     
-    inline bool operator==(const _Self& x) const { return Idx == x.Idx; }
-    inline bool operator!=(const _Self& x) const { return !operator==(x); }
+    bool operator==(const _Self& x) const { return Idx == x.Idx; }
+    bool operator!=(const _Self& x) const { return !operator==(x); }
     
-    inline pointer operator*() const { return Ty->getContainedType(Idx); }
-    inline pointer operator->() const { return operator*(); }
+    pointer operator*() const { return Ty->getContainedType(Idx); }
+    pointer operator->() const { return operator*(); }
     
-    inline _Self& operator++() { ++Idx; return *this; } // Preincrement
-    inline _Self operator++(int) { // Postincrement
+    _Self& operator++() { ++Idx; return *this; } // Preincrement
+    _Self operator++(int) { // Postincrement
       _Self tmp = *this; ++*this; return tmp; 
     }
     
-    inline _Self& operator--() { --Idx; return *this; }  // Predecrement
-    inline _Self operator--(int) { // Postdecrement
+    _Self& operator--() { --Idx; return *this; }  // Predecrement
+    _Self operator--(int) { // Postdecrement
       _Self tmp = *this; --*this; return tmp;
     }
   };