X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Futil-pre.qh;h=b81fd2a6df81d409626458a4ba338a15273796f2;hb=ff77eb42291c25b2e06a7897e6e486cca7ee8a70;hp=b96e78d514f6832d6c39cfae274e678b641761e9;hpb=221325d0a55851348e3397354225f04cd472d42f;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/util-pre.qh b/qcsrc/common/util-pre.qh index b96e78d51..b81fd2a6d 100644 --- a/qcsrc/common/util-pre.qh +++ b/qcsrc/common/util-pre.qh @@ -29,18 +29,6 @@ #define itos(i) ftos(i) #endif -#ifndef QCC_SUPPORT_BOOL - #define bool float - - // Boolean Constants - const int true = 1; - const int false = 0; -#endif - -// Transitional aliases -[[deprecated("use true")]] [[alias("true")]] const bool TRUE; -[[deprecated("use false")]] [[alias("false")]] const bool FALSE; - #define FOREACH_ARRAY(arr, start, end, cond, body) do { \ for (int i = start; i < end; ++i) { \ const noref entity it = arr[i]; \