diff options
author | Richard Linden <none@none> | 2012-12-01 12:49:01 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-12-01 12:49:01 -0800 |
commit | 4f9a5d0554c16a81625574a7a4ad6d5070e649e3 (patch) | |
tree | 46ed849c0d20fda39651cdbf77a265bc31ba93cf /indra/llcommon/llunit.h | |
parent | ca2207bd35c33b13b122f875a5a7d218f94ca3fc (diff) |
fix for gcc compile errors
Diffstat (limited to 'indra/llcommon/llunit.h')
-rw-r--r-- | indra/llcommon/llunit.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llcommon/llunit.h b/indra/llcommon/llunit.h index fc1347b59f..54902b6322 100644 --- a/indra/llcommon/llunit.h +++ b/indra/llcommon/llunit.h @@ -177,6 +177,7 @@ template<typename UNIT_TYPE, typename STORAGE_TYPE> struct LLUnitStrict : public LLUnit<UNIT_TYPE, STORAGE_TYPE> { typedef LLUnitStrict<UNIT_TYPE, STORAGE_TYPE> self_t; + typedef typename LLUnit<UNIT_TYPE, STORAGE_TYPE>::storage_t storage_t; explicit LLUnitStrict(storage_t value = storage_t()) : LLUnit(value) |