summaryrefslogtreecommitdiff
path: root/src/stdafx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdafx.h')
-rw-r--r--src/stdafx.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/stdafx.h b/src/stdafx.h
index bee855169..7120ec175 100644
--- a/src/stdafx.h
+++ b/src/stdafx.h
@@ -438,6 +438,15 @@ void NORETURN CDECL error(const char *str, ...) WARN_FORMAT(1, 2);
#endif
/**
+ * Version of the standard free that accepts const pointers.
+ * @param ptr The data to free.
+ */
+static FORCEINLINE void free(const void *ptr)
+{
+ free(const_cast<void *>(ptr));
+}
+
+/**
* The largest value that can be entered in a variable
* @param type the type of the variable
*/