From 992850bcb1992ff052d5ac2379e4675a34861723 Mon Sep 17 00:00:00 2001 From: Thomas Sterren Date: Tue, 20 Feb 2018 14:54:02 +0100 Subject: [PATCH] Compiler satisfaction --- src/gos/gos_qt.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gos/gos_qt.cpp b/src/gos/gos_qt.cpp index e34fbfb1..7ca6be2e 100644 --- a/src/gos/gos_qt.cpp +++ b/src/gos/gos_qt.cpp @@ -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); }