diff options
| author | Richard Linden <none@none> | 2013-08-27 16:48:57 -0700 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2013-08-27 16:48:57 -0700 | 
| commit | 35e8c81dd8afd05b6298a1849c63bc9238ab3271 (patch) | |
| tree | 1705f0f673124bbbe806bdba46f2b9686f17286e | |
| parent | 00bd492b30f0dcb49d354be74e6e9a312a84863f (diff) | |
gcc build fix
| -rw-r--r-- | indra/llcommon/llunittype.h | 24 | 
1 files changed, 12 insertions, 12 deletions
| 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<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;  	}  }; | 
