Compiler satisfaction

release/v2.9
Thomas Sterren 2018-02-20 14:54:02 +01:00
parent 9e51a3e586
commit 992850bcb1
1 changed files with 1 additions and 0 deletions

View File

@ -89,6 +89,7 @@ void* gfxAlloc(size_t sz)
void* gfxRealloc(void* ptr, size_t oldsz, size_t newsz)
{
Q_UNUSED(oldsz)
return realloc(ptr, newsz);
}