fix -Wunused-parameter

This commit is contained in:
wmayer
2016-09-23 16:37:12 +02:00
parent 176efdf80b
commit d88ecd5f56
4 changed files with 16 additions and 2 deletions

View File

@@ -102,18 +102,24 @@ public:
{
#ifdef FC_DEBUG
Log(s);
#else
Q_UNUSED(s);
#endif
}
void Message(const char * s)
{
#ifdef FC_DEBUG
Log(s);
#else
Q_UNUSED(s);
#endif
}
void Error (const char * s)
{
#ifdef FC_DEBUG
Log(s);
#else
Q_UNUSED(s);
#endif
}
void Log (const char * s)