diff options
author | Rider Linden <none@none> | 2015-03-25 13:02:52 -0700 |
---|---|---|
committer | Rider Linden <none@none> | 2015-03-25 13:02:52 -0700 |
commit | 281d1166cb302679bb2b1375bab9b238d59fdb87 (patch) | |
tree | 3facd2d249b9bf92b95d6285489e22a382bf7223 | |
parent | e140118fc41b79e403b299cabe1653af1971e87a (diff) |
gcc remove extra qualification on decrementInFlightCounter static.
-rwxr-xr-x | indra/newview/llappearancemgr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappearancemgr.h b/indra/newview/llappearancemgr.h index 74d4829ed2..812d3c366c 100755 --- a/indra/newview/llappearancemgr.h +++ b/indra/newview/llappearancemgr.h @@ -227,7 +227,7 @@ public: bool testCOFRequestVersion() const; - void LLAppearanceMgr::decrementInFlightCounter()
+ void decrementInFlightCounter()
{
mInFlightCounter = llmax(mInFlightCounter - 1, 0);
}
|