diff options
author | callum_linden <none@none> | 2014-10-17 13:40:15 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2014-10-17 13:40:15 -0700 |
commit | 41712d35fbc0517854f21a4ccf54fafeda336aa3 (patch) | |
tree | a13f48ff41de200ff5f7011678154e94ce55fa71 | |
parent | 791858f517dcb7df1f056323439966ee685410c4 (diff) |
Update to build on Xcode 6.0: additional scoping required for clang
-rwxr-xr-x | indra/llcommon/llinitparam.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/llcommon/llinitparam.h b/indra/llcommon/llinitparam.h index 7aa87fcd0e..be3552cb46 100755 --- a/indra/llcommon/llinitparam.h +++ b/indra/llcommon/llinitparam.h @@ -1123,7 +1123,7 @@ namespace LLInitParam void set(const value_t& val, bool flag_as_provided = true) { named_value_t::clearValueName(); - setValue(val); + named_value_t::setValue(val); setProvided(flag_as_provided); } @@ -1287,7 +1287,7 @@ namespace LLInitParam // assign block contents to this param-that-is-a-block void set(const value_t& val, bool flag_as_provided = true) { - setValue(val); + named_value_t::setValue(val); named_value_t::clearValueName(); setProvided(flag_as_provided); } @@ -2054,7 +2054,7 @@ namespace LLInitParam Optional& operator =(const value_t& val) { - set(val); + super_t::set(val); return *this; } @@ -2084,7 +2084,7 @@ namespace LLInitParam Mandatory& operator =(const value_t& val) { - set(val); + super_t::set(val); return *this; } @@ -2120,7 +2120,7 @@ namespace LLInitParam Multiple& operator =(const container_t& val) { - set(val); + super_t::set(val); return *this; } |