]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/lib/bool.qh
Purge other from blocked
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / bool.qh
index 5510c171cfcc357487f4cd92182e8b987f88d7ea..dc50c771f164470a2a1e9d81d63c838c549abd2e 100644 (file)
@@ -1,5 +1,4 @@
-#ifndef BOOL_H
-#define BOOL_H
+#pragma once
 
 #ifndef QCC_SUPPORT_BOOL
        // Boolean Constants
@@ -7,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
@@ -31,5 +26,3 @@ float InterpretBoolean(string input)
                default: return boolean(stof(input));
        }
 }
-
-#endif