1
0
forked from 0ad/0ad

Fixes clang warning about hidden overloaded virtual function

This was SVN commit r15745.
This commit is contained in:
historic_bruno 2014-09-13 19:06:55 +00:00
parent fe381158fb
commit 01395ce96d

View File

@ -56,7 +56,7 @@ public:
class CDummyReplayLogger : public IReplayLogger
{
public:
virtual void StartGame(const CScriptValRooted& UNUSED(attribs)) { }
virtual void StartGame(JS::MutableHandleValue UNUSED(attribs)) { }
virtual void Turn(u32 UNUSED(n), u32 UNUSED(turnLength), const std::vector<SimulationCommand>& UNUSED(commands)) { }
virtual void Hash(const std::string& UNUSED(hash), bool UNUSED(quick)) { }
};