forked from OSchip/llvm-project
Removed explicit inline as per the LLVM style guide.
llvm-svn: 174432
This commit is contained in:
parent
de89ecf1fc
commit
415ddd7e13
|
@ -451,31 +451,31 @@ namespace {
|
||||||
PtrState() : KnownPositiveRefCount(false), Partial(false),
|
PtrState() : KnownPositiveRefCount(false), Partial(false),
|
||||||
Seq(S_None) {}
|
Seq(S_None) {}
|
||||||
|
|
||||||
inline void SetKnownPositiveRefCount() {
|
void SetKnownPositiveRefCount() {
|
||||||
KnownPositiveRefCount = true;
|
KnownPositiveRefCount = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void ClearRefCount() {
|
void ClearRefCount() {
|
||||||
KnownPositiveRefCount = false;
|
KnownPositiveRefCount = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool IsKnownIncremented() const {
|
bool IsKnownIncremented() const {
|
||||||
return KnownPositiveRefCount;
|
return KnownPositiveRefCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void SetSeq(Sequence NewSeq) {
|
void SetSeq(Sequence NewSeq) {
|
||||||
Seq = NewSeq;
|
Seq = NewSeq;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline Sequence GetSeq() const {
|
Sequence GetSeq() const {
|
||||||
return Seq;
|
return Seq;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void ClearSequenceProgress() {
|
void ClearSequenceProgress() {
|
||||||
ResetSequenceProgress(S_None);
|
ResetSequenceProgress(S_None);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void ResetSequenceProgress(Sequence NewSeq) {
|
void ResetSequenceProgress(Sequence NewSeq) {
|
||||||
Seq = NewSeq;
|
Seq = NewSeq;
|
||||||
Partial = false;
|
Partial = false;
|
||||||
RRI.clear();
|
RRI.clear();
|
||||||
|
|
Loading…
Reference in New Issue