summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilip Gawin <filip.gawin@zoho.com>2021-01-22 19:59:27 +0100
committerFilip Gawin <filip.gawin@zoho.com>2021-01-22 19:59:27 +0100
commite9adf8162bd4bca98c27aa3e81dfaa90a4b9efe4 (patch)
tree53b8dd09777fcf56c6f118396b205a2ea898f03c
parentMerge branch 'master' of github.com:GTAmodding/re3 (diff)
downloadre3-e9adf8162bd4bca98c27aa3e81dfaa90a4b9efe4.tar
re3-e9adf8162bd4bca98c27aa3e81dfaa90a4b9efe4.tar.gz
re3-e9adf8162bd4bca98c27aa3e81dfaa90a4b9efe4.tar.bz2
re3-e9adf8162bd4bca98c27aa3e81dfaa90a4b9efe4.tar.lz
re3-e9adf8162bd4bca98c27aa3e81dfaa90a4b9efe4.tar.xz
re3-e9adf8162bd4bca98c27aa3e81dfaa90a4b9efe4.tar.zst
re3-e9adf8162bd4bca98c27aa3e81dfaa90a4b9efe4.zip
-rw-r--r--src/core/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/common.h b/src/core/common.h
index 13218983..596c47ee 100644
--- a/src/core/common.h
+++ b/src/core/common.h
@@ -364,7 +364,7 @@ __inline__ void TRACE(char *f, ...) { } // this is re3 only, and so the function
#define _TODO(x)
#define _TODOCONST(x) (x)
-#if CHECK_STRUCT_SIZES
+#ifdef CHECK_STRUCT_SIZES
template<int s, int t> struct check_size {
static_assert(s == t, "Invalid structure size");
};