From 35e8c81dd8afd05b6298a1849c63bc9238ab3271 Mon Sep 17 00:00:00 2001
From: Richard Linden <none@none>
Date: Tue, 27 Aug 2013 16:48:57 -0700
Subject: [PATCH] gcc build fix

---
 indra/llcommon/llunittype.h | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/indra/llcommon/llunittype.h b/indra/llcommon/llunittype.h
index 50037ccaded..5cf41343fce 100644
--- a/indra/llcommon/llunittype.h
+++ b/indra/llcommon/llunittype.h
@@ -287,78 +287,78 @@ struct LLUnitImplicit : public LLUnit<STORAGE_TYPE, UNITS>
 	template<typename OTHER_STORAGE_TYPE, typename OTHER_UNITS>
 	LL_FORCE_INLINE bool operator == (LLUnitImplicit<OTHER_STORAGE_TYPE, OTHER_UNITS> other) const
 	{
-		return mValue == convert(other).value();
+		return base_t::mValue == convert(other).value();
 	}
 
 	template<typename STORAGE_T>
 	LL_FORCE_INLINE bool operator == (STORAGE_T other) const
 	{
-		return mValue == other;
+		return base_t::mValue == other;
 	}
 
 	using base_t::operator !=;
 	template<typename OTHER_STORAGE_TYPE, typename OTHER_UNITS>
 	LL_FORCE_INLINE bool operator != (LLUnitImplicit<OTHER_STORAGE_TYPE, OTHER_UNITS> other) const
 	{
-		return mValue != convert(other).value();
+		return base_t::mValue != convert(other).value();
 	}
 
 	template<typename STORAGE_T>
 	LL_FORCE_INLINE bool operator != (STORAGE_T other) const
 	{
-		return mValue != other;
+		return base_t::mValue != other;
 	}
 	
 	using base_t::operator <;
 	template<typename OTHER_STORAGE_TYPE, typename OTHER_UNITS>
 	LL_FORCE_INLINE bool operator < (LLUnitImplicit<OTHER_STORAGE_TYPE, OTHER_UNITS> other) const
 	{
-		return mValue < convert(other).value();
+		return base_t::mValue < convert(other).value();
 	}
 
 	template<typename STORAGE_T>
 	LL_FORCE_INLINE bool operator < (STORAGE_T other) const
 	{
-		return mValue < other;
+		return base_t::mValue < other;
 	}
 
 	using base_t::operator <=;
 	template<typename OTHER_STORAGE_TYPE, typename OTHER_UNITS>
 	LL_FORCE_INLINE bool operator <= (LLUnitImplicit<OTHER_STORAGE_TYPE, OTHER_UNITS> other) const
 	{
-		return mValue <= convert(other).value();
+		return base_t::mValue <= convert(other).value();
 	}
 
 	template<typename STORAGE_T>
 	LL_FORCE_INLINE bool operator <= (STORAGE_T other) const
 	{
-		return mValue <= other;
+		return base_t::mValue <= other;
 	}
 
 	using base_t::operator >;
 	template<typename OTHER_STORAGE_TYPE, typename OTHER_UNITS>
 	LL_FORCE_INLINE bool operator > (LLUnitImplicit<OTHER_STORAGE_TYPE, OTHER_UNITS> other) const
 	{
-		return mValue > convert(other).value();
+		return base_t::mValue > convert(other).value();
 	}
 
 	template<typename STORAGE_T>
 	LL_FORCE_INLINE bool operator > (STORAGE_T other) const
 	{
-		return mValue > other;
+		return base_t::mValue > other;
 	}
 
 	using base_t::operator >=;
 	template<typename OTHER_STORAGE_TYPE, typename OTHER_UNITS>
 	LL_FORCE_INLINE bool operator >= (LLUnitImplicit<OTHER_STORAGE_TYPE, OTHER_UNITS> other) const
 	{
-		return mValue >= convert(other).value();
+		return base_t::mValue >= convert(other).value();
 	}
 
 	template<typename STORAGE_T>
 	LL_FORCE_INLINE bool operator >= (STORAGE_T other) const
 	{
-		return mValue >= other;
+		return base_t::mValue >= other;
 	}
 };
 
-- 
GitLab