diff options
author | Rider Linden <rider@lindenlab.com> | 2019-01-23 09:13:06 -0800 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2019-01-23 09:13:06 -0800 |
commit | 5ac74412508b42d86b6dde0097751832c997a1d9 (patch) | |
tree | 26f329f83bc03de95bb94b3ecfd08a12753b23ab /indra/newview | |
parent | b465a5bf6f4f63026ff66bfee4671584c47c4119 (diff) |
Mac is a bit picky
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llenvironment.cpp | 34 |
1 files changed, 11 insertions, 23 deletions
diff --git a/indra/newview/llenvironment.cpp b/indra/newview/llenvironment.cpp index a9251629d4..56a4fd7129 100644 --- a/indra/newview/llenvironment.cpp +++ b/indra/newview/llenvironment.cpp @@ -379,7 +379,7 @@ namespace } } - void injectExperienceValues(LLSD values, LLUUID experience_id, F32Seconds transition) + void injectExperienceValues(LLSD values, LLUUID experience_id, typename LLSettingsBase::Seconds transition) { for (auto it = values.beginMap(); it != values.endMap(); ++it) { @@ -391,7 +391,7 @@ namespace protected: struct Injection { - struct Injection(F32Seconds transition, const std::string &keyname, LLSD value, bool blendin, LLUUID experince, S32 index = -1) : + struct Injection(typename LLSettingsBase::Seconds transition, const std::string &keyname, LLSD value, bool blendin, LLUUID experince, S32 index = -1) : mTransition(transition), mTimeRemaining(transition), mKeyName(keyname), @@ -402,14 +402,14 @@ namespace mFirstTime(true) {} - F32Seconds mTransition; - F32Seconds mTimeRemaining; - std::string mKeyName; - LLSD mValue; - LLUUID mExperience; - S32 mIndex; - bool mBlendIn; - bool mFirstTime; + typename LLSettingsBase::Seconds mTransition; + typename LLSettingsBase::Seconds mTimeRemaining; + std::string mKeyName; + LLSD mValue; + LLUUID mExperience; + S32 mIndex; + bool mBlendIn; + bool mFirstTime; typedef std::shared_ptr<Injection> ptr_t; }; @@ -419,7 +419,7 @@ namespace { static LLFrameTimer timer; - F32Seconds delta(timer.getElapsedTimeAndResetF32()); + LLSettingsBase::Seconds delta(timer.getElapsedTimeAndResetF32()); resetSpecial(); @@ -508,18 +508,6 @@ namespace key_to_expid_t mOverrideExps; }; -// template<> -// LLSettingsSky::ptr_t LLSettingsInjected<LLSettingsSky>::buildClone() const -// { -// return LLSettingsVOSky::buildSky(getSettings()); -// } -// -// template<> -// LLSettingsWater::ptr_t LLSettingsInjected<LLSettingsWater>::buildClone() const -// { -// return LLSettingsVOWater::buildWater(getSettings()); -// } - template<> LLSettingsBase::stringset_t LLSettingsInjected<LLSettingsVOSky>::getSpecialKeys() const { |