[llvm] r174432 - Removed explicit inline as per the LLVM style guide.
Michael Gottesman
mgottesman at apple.com
Tue Feb 5 11:32:18 PST 2013
Author: mgottesman
Date: Tue Feb 5 13:32:18 2013
New Revision: 174432
URL: http://llvm.org/viewvc/llvm-project?rev=174432&view=rev
Log:
Removed explicit inline as per the LLVM style guide.
Modified:
llvm/trunk/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
Modified: llvm/trunk/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/ObjCARC/ObjCARCOpts.cpp?rev=174432&r1=174431&r2=174432&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/ObjCARC/ObjCARCOpts.cpp (original)
+++ llvm/trunk/lib/Transforms/ObjCARC/ObjCARCOpts.cpp Tue Feb 5 13:32:18 2013
@@ -451,31 +451,31 @@ namespace {
PtrState() : KnownPositiveRefCount(false), Partial(false),
Seq(S_None) {}
- inline void SetKnownPositiveRefCount() {
+ void SetKnownPositiveRefCount() {
KnownPositiveRefCount = true;
}
- inline void ClearRefCount() {
+ void ClearRefCount() {
KnownPositiveRefCount = false;
}
- inline bool IsKnownIncremented() const {
+ bool IsKnownIncremented() const {
return KnownPositiveRefCount;
}
- inline void SetSeq(Sequence NewSeq) {
+ void SetSeq(Sequence NewSeq) {
Seq = NewSeq;
}
- inline Sequence GetSeq() const {
+ Sequence GetSeq() const {
return Seq;
}
- inline void ClearSequenceProgress() {
+ void ClearSequenceProgress() {
ResetSequenceProgress(S_None);
}
- inline void ResetSequenceProgress(Sequence NewSeq) {
+ void ResetSequenceProgress(Sequence NewSeq) {
Seq = NewSeq;
Partial = false;
RRI.clear();
More information about the llvm-commits
mailing list