Compile bug fixes.

This commit is contained in:
whipowill
2022-05-18 15:57:50 -05:00
parent 16ef1fc76c
commit 8aba7afca7
5 changed files with 7 additions and 7 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(std::string const value) { return false; }
virtual bool Load([[maybe_unused]] std::string const value) { return false; } // unused param - whipowill
};
template<class T>