From: Chris Lattner Date: Mon, 13 Oct 2003 15:30:59 +0000 (+0000) Subject: Remove explicit inline qualifiers when the implicit ones work just as well X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=814f6225261d7a8de1e8747a20625ab0ef6332de;p=oota-llvm.git Remove explicit inline qualifiers when the implicit ones work just as well git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9082 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Type.h b/include/llvm/Type.h index f8202ae40c6..fe6db028b46 100644 --- a/include/llvm/Type.h +++ b/include/llvm/Type.h @@ -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; } };