From: TimePath Date: Wed, 9 Mar 2016 09:53:28 +0000 (+1100) Subject: Remove TRUE and FALSE X-Git-Tag: xonotic-v0.8.2~1141 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=fd5057329665b554adc7fc7bd88ef54137fe4832;p=xonotic%2Fxonotic-data.pk3dir.git Remove TRUE and FALSE --- diff --git a/qcsrc/lib/bool.qh b/qcsrc/lib/bool.qh index 9889f778a..dc50c771f 100644 --- a/qcsrc/lib/bool.qh +++ b/qcsrc/lib/bool.qh @@ -6,10 +6,6 @@ const int false = 0; #endif -// Transitional aliases -[[deprecated("use true")]][[alias("true")]] const bool TRUE; -[[deprecated("use false")]][[alias("false")]] const bool FALSE; - #define boolean(value) ((value) != 0) // get true/false value of a string with multiple different inputs