diff --git a/src/stdafx.h b/src/stdafx.h --- a/src/stdafx.h +++ b/src/stdafx.h @@ -411,7 +411,7 @@ void NORETURN AssertFailedError(int line * Version of the standard free that accepts const pointers. * @param ptr The data to free. */ -static inline void free(const void *ptr) +inline void free(const void *ptr) { free(const_cast(ptr)); }