remove tab-width dependent indentation

This commit is contained in:
Andrzej Rybczak
2012-08-25 17:53:15 +02:00
parent f6cae753e2
commit ecf3b0d30a
2 changed files with 139 additions and 139 deletions

View File

@@ -62,14 +62,14 @@ struct Action
wchar_t getChar() const { return Char; }
CharType getType() const { return Type; }
# define INEQUALITY_OPERATOR(CMP) \
bool operator CMP (const Key &k) const \
{ \
if (Char CMP k.Char) \
return true; \
if (Char != k.Char) \
return false; \
return Type CMP k.Type; \
# define INEQUALITY_OPERATOR(CMP) \
bool operator CMP (const Key &k) const \
{ \
if (Char CMP k.Char) \
return true; \
if (Char != k.Char) \
return false; \
return Type CMP k.Type; \
}
INEQUALITY_OPERATOR(<);
INEQUALITY_OPERATOR(<=);