Skip to content
Snippets Groups Projects
Commit d8cf705d authored by Nyx (Neal Orman)'s avatar Nyx (Neal Orman)
Browse files

BUILDFIX: fixing linux build breakage

cleaning up a bit of syntax that gcc is complaining about.

reviewed by bao
parent e9e5806d
No related branches found
No related tags found
No related merge requests found
......@@ -52,12 +52,12 @@ class LL_COMMON_API LLRefCount
void ref() const ;
S32 unref() const ;
#else
void LLRefCount::ref() const
inline void ref() const
{
mRef++;
}
S32 LLRefCount::unref() const
inline S32 unref() const
{
llassert(mRef >= 1);
if (0 == --mRef)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment