mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
Fixed GCC warning.
This commit is contained in:
parent
25917d1cac
commit
e6eaea7591
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ namespace bgfx
|
||||||
if (NULL != _ptr) \
|
if (NULL != _ptr) \
|
||||||
{ \
|
{ \
|
||||||
ULONG count = _ptr->Release(); \
|
ULONG count = _ptr->Release(); \
|
||||||
_check(_expected == count, "RefCount is %d (expected %d).", count, _expected); \
|
_check(_expected == count, "RefCount is %d (expected %d).", count, _expected); BX_UNUSED(count); \
|
||||||
_ptr = NULL; \
|
_ptr = NULL; \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
Loading…
Reference in a new issue