ExpressionParser: Rename ParseStatus' Success member to Successful

This clashes with X11's preprocessor define named Success (because using
non-prefixed lowercase identifiers in C was apparently a fantastic idea
at some point), causing compilation errors.
This commit is contained in:
Lioncash
2017-04-02 06:13:12 -04:00
parent c09f7bd84b
commit 05872336a9
3 changed files with 15 additions and 15 deletions

View File

@ -61,7 +61,7 @@ public:
enum class ParseStatus
{
Success,
Successful,
SyntaxError,
NoDevice,
};