Commit fd1a3505 authored by Alvarez, Gonzalo's avatar Alvarez, Gonzalo
Browse files

Ainur macros: bug fix

parent eb3c357b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -356,7 +356,7 @@ private:

	static bool isValidCharForMacroName(char c)
	{
		const bool b1 = (c > 60 && c < 123);
		const bool b1 = (c > 96 && c < 123);
		const bool b2 = (c > 64 && c < 91);
		const bool b3 = (c > 47 && c < 58);