From: Rudolf Polzer Date: Sat, 21 Jan 2012 16:45:02 +0000 (+0100) Subject: error for another bad fteqcc bug X-Git-Tag: xonotic-v0.6.0~104^2~2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ec2066869b2c4d965d7dd3f9d39a7dd852c743ba;p=xonotic%2Fxonotic-data.pk3dir.git error for another bad fteqcc bug --- diff --git a/qcsrc/common/util.qc b/qcsrc/common/util.qc index 1930d7c6f..23354397a 100644 --- a/qcsrc/common/util.qc +++ b/qcsrc/common/util.qc @@ -1580,6 +1580,10 @@ void check_unacceptable_compiler_bugs() tokenize_console("foo bar"); if(strcat(argv(0), substring("foo bar", 4, 7 - argv_start_index(1))) == "barbar") error("fteqcc bug introduced with revision 3178 detected. Please upgrade fteqcc to a later revision, downgrade fteqcc to revision 3177, or pester Spike until he fixes it. You can set _allow_unacceptable_compiler_bugs 1 to skip this check, but expect stuff to be horribly broken then."); + + string s = ""; + if not(s) + error("The empty string counts as false. We do not want that!"); } float compressShotOrigin(vector v)