diff options
author | Rider Linden <rider@lindenlab.com> | 2018-02-06 17:27:56 -0800 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2018-02-06 17:27:56 -0800 |
commit | 7838189843ff3b9c800e458b2452943edbc202ea (patch) | |
tree | fb690590cbe775062d162ccb1d3e65224365dea9 /indra/llinventory/llsettingssky.cpp | |
parent | f07e5ee2a4907b9488a67a13db794c770878e648 (diff) |
boost->std & same level interp
Diffstat (limited to 'indra/llinventory/llsettingssky.cpp')
-rw-r--r-- | indra/llinventory/llsettingssky.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llinventory/llsettingssky.cpp b/indra/llinventory/llsettingssky.cpp index 32b292e384..572b5703b3 100644 --- a/indra/llinventory/llsettingssky.cpp +++ b/indra/llinventory/llsettingssky.cpp @@ -98,7 +98,7 @@ LLSettingsSky::LLSettingsSky(): void LLSettingsSky::blend(const LLSettingsBase::ptr_t &end, F64 blendf) { - LLSettingsSky::ptr_t other = boost::static_pointer_cast<LLSettingsSky>(end); + LLSettingsSky::ptr_t other = std::static_pointer_cast<LLSettingsSky>(end); LLSD blenddata = interpolateSDMap(mSettings, other->mSettings, blendf); replaceSettings(blenddata); |