Human-readable type of C4V_Any changed to 'nil'

This lowers the confusion factor of error messages like
'ERROR: operator "=" left side: got "any", but expected "&"!'
since nobody really knows what any is.
stable-5.2
Nicolas Hake 2009-07-26 17:42:22 +02:00
parent 4369b4e03c
commit ef3a386549
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ const char* GetC4VName(const C4V_Type Type)
switch(Type)
{
case C4V_Any:
return "any";
return "nil";
case C4V_Int:
return "int";
case C4V_Bool: