From: Samual Lenks Date: Mon, 4 Mar 2013 20:14:58 +0000 (-0500) Subject: Remove VAR_TO_TEXT X-Git-Tag: xonotic-v0.7.0~62^2~23^2~9 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e78029c357c1ea6f970f2874aedfa07f341c2fa7;p=xonotic%2Fxonotic-data.pk3dir.git Remove VAR_TO_TEXT --- diff --git a/qcsrc/common/util.qh b/qcsrc/common/util.qh index eb2713864..8532eff70 100644 --- a/qcsrc/common/util.qh +++ b/qcsrc/common/util.qh @@ -1,9 +1,6 @@ // a dummy macro that prevents the "hanging ;" warning #define ENDS_WITH_CURLY_BRACE -// return the actual code name of a var as a string -#define VAR_TO_TEXT(var) #var - #ifdef HAVE_YO_DAWG_CPP // TODO make ascii art pic of xzibit // YO DAWG! @@ -43,7 +40,7 @@ void ACCUMULATE_call(string func) // used for simplifying ACCUMULATE_FUNCTIONs #define SET_FIRST_OR_LAST(input,first,count) if(!input) { input = (first + count); } #define SET_FIELD_COUNT(field,first,count) if(!field) { field = (first + count); ++count; } -#define CHECK_MAX_COUNT(name,max,count,type) if(count == max) { error(strcat("Maximum ", type, " hit: ", VAR_TO_TEXT(name), ": ", ftos(count), ".\n")); } +#define CHECK_MAX_COUNT(name,max,count,type) if(count == max) { error(strcat("Maximum ", type, " hit: ", #name, ": ", ftos(count), ".\n")); } // this returns a tempstring containing a copy of s with additional \n newlines added, it also replaces \n in the text with a real newline // NOTE: s IS allowed to be a tempstring