Compile bug fixes.

This commit is contained in:
whipowill
2022-05-20 12:41:13 -05:00
parent 9a6709f5c1
commit 92ce54a3cd
42 changed files with 182 additions and 182 deletions

View File

@@ -24,7 +24,7 @@ class UntypedValue : public AiNamedObject
virtual void Reset() { }
virtual std::string const Format() { return "?"; }
virtual std::string const Save() { return "?"; }
virtual bool Load([[maybe_unused]] std::string const value) { return false; } // unused param - whipowill
virtual bool Load([[maybe_unused]] std::string const value) { return false; }
};
template<class T>
@@ -135,7 +135,7 @@ class MemoryCalculatedValue : public CalculatedValue<T>
return true;
}
void Set([[maybe_unused]] T value) override // unused param - whipowill
void Set([[maybe_unused]] T value) override
{
CalculatedValue<T>::Set(this->value);
UpdateChange();