diff options
| author | Lioncash <mathew1800@gmail.com> | 2017-04-02 06:13:12 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2017-04-02 06:13:18 -0400 |
| commit | 05872336a9bfc6214f4e818aa76ea1e9bb063dcd (patch) | |
| tree | 908fbe9853f9cce14400622800dde565a50945a6 /Source/Core/InputCommon/ControlReference/ExpressionParser.h | |
| parent | c09f7bd84b84f462c4940239e9e3c08274d7e3b4 (diff) | |
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.
Diffstat (limited to 'Source/Core/InputCommon/ControlReference/ExpressionParser.h')
| -rw-r--r-- | Source/Core/InputCommon/ControlReference/ExpressionParser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControlReference/ExpressionParser.h b/Source/Core/InputCommon/ControlReference/ExpressionParser.h index 2681c551fc..f07c9a1326 100644 --- a/Source/Core/InputCommon/ControlReference/ExpressionParser.h +++ b/Source/Core/InputCommon/ControlReference/ExpressionParser.h @@ -61,7 +61,7 @@ public: enum class ParseStatus { - Success, + Successful, SyntaxError, NoDevice, }; |
