From 35e8c81dd8afd05b6298a1849c63bc9238ab3271 Mon Sep 17 00:00:00 2001 From: Richard Linden Date: Tue, 27 Aug 2013 16:48:57 -0700 Subject: gcc build fix --- indra/llcommon/llunittype.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'indra') diff --git a/indra/llcommon/llunittype.h b/indra/llcommon/llunittype.h index 50037ccade..5cf41343fc 100644 --- a/indra/llcommon/llunittype.h +++ b/indra/llcommon/llunittype.h @@ -287,78 +287,78 @@ struct LLUnitImplicit : public LLUnit template LL_FORCE_INLINE bool operator == (LLUnitImplicit other) const { - return mValue == convert(other).value(); + return base_t::mValue == convert(other).value(); } template LL_FORCE_INLINE bool operator == (STORAGE_T other) const { - return mValue == other; + return base_t::mValue == other; } using base_t::operator !=; template LL_FORCE_INLINE bool operator != (LLUnitImplicit other) const { - return mValue != convert(other).value(); + return base_t::mValue != convert(other).value(); } template LL_FORCE_INLINE bool operator != (STORAGE_T other) const { - return mValue != other; + return base_t::mValue != other; } using base_t::operator <; template LL_FORCE_INLINE bool operator < (LLUnitImplicit other) const { - return mValue < convert(other).value(); + return base_t::mValue < convert(other).value(); } template LL_FORCE_INLINE bool operator < (STORAGE_T other) const { - return mValue < other; + return base_t::mValue < other; } using base_t::operator <=; template LL_FORCE_INLINE bool operator <= (LLUnitImplicit other) const { - return mValue <= convert(other).value(); + return base_t::mValue <= convert(other).value(); } template LL_FORCE_INLINE bool operator <= (STORAGE_T other) const { - return mValue <= other; + return base_t::mValue <= other; } using base_t::operator >; template LL_FORCE_INLINE bool operator > (LLUnitImplicit other) const { - return mValue > convert(other).value(); + return base_t::mValue > convert(other).value(); } template LL_FORCE_INLINE bool operator > (STORAGE_T other) const { - return mValue > other; + return base_t::mValue > other; } using base_t::operator >=; template LL_FORCE_INLINE bool operator >= (LLUnitImplicit other) const { - return mValue >= convert(other).value(); + return base_t::mValue >= convert(other).value(); } template LL_FORCE_INLINE bool operator >= (STORAGE_T other) const { - return mValue >= other; + return base_t::mValue >= other; } }; -- cgit v1.2.3