From d8cf705d0189ec34b1202ee50ea3e5991cf4c90f Mon Sep 17 00:00:00 2001
From: "Nyx (Neal Orman)" <nyx@lindenlab.com>
Date: Thu, 6 Jan 2011 13:07:18 -0500
Subject: [PATCH] BUILDFIX: fixing linux build breakage

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

reviewed by bao
---
 indra/llcommon/llrefcount.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/indra/llcommon/llrefcount.h b/indra/llcommon/llrefcount.h
index 868789de4d5..8eb5d53f3f9 100644
--- a/indra/llcommon/llrefcount.h
+++ b/indra/llcommon/llrefcount.h
@@ -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) 
-- 
GitLab