aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-02-05 19:32:18 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-02-05 19:32:18 +0000
commitda6bf1d8bbf8e787f7c0edffbad40531dd520446 (patch)
tree44aec95d9e323bb58b729ef1f1629fe734901a3e /lib/Transforms
parentb48783b09127136c98cc6b0399be757728504e56 (diff)
Removed explicit inline as per the LLVM style guide.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174432 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/ObjCARC/ObjCARCOpts.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/Transforms/ObjCARC/ObjCARCOpts.cpp b/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
index 3bfb003df5..e6cd1a7ca9 100644
--- a/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
+++ b/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
@@ -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();