diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-11-22 14:41:10 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-11-22 14:41:13 -0500 |
| commit | 6586ecc7a861815cfa00208392455a0b329e394b (patch) | |
| tree | 9846f0da2f3e25c7d9c484a1bb96ca5795519b14 /Source/Core/InputCommon/ControlReference/FunctionExpression.cpp | |
| parent | bc449fb98f3b741f78d8881e2c02d588829aad74 (diff) | |
InputCommon/FunctionExpression: include <algorithm>
std::min/std::max are used within this translation unit, so it needs to
be included to prevent potential compilation failures.
Diffstat (limited to 'Source/Core/InputCommon/ControlReference/FunctionExpression.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControlReference/FunctionExpression.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControlReference/FunctionExpression.cpp b/Source/Core/InputCommon/ControlReference/FunctionExpression.cpp index 18b98c5e19..f1cdc690a3 100644 --- a/Source/Core/InputCommon/ControlReference/FunctionExpression.cpp +++ b/Source/Core/InputCommon/ControlReference/FunctionExpression.cpp @@ -2,11 +2,12 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include "InputCommon/ControlReference/FunctionExpression.h" + +#include <algorithm> #include <chrono> #include <cmath> -#include "InputCommon/ControlReference/FunctionExpression.h" - namespace ciface { namespace ExpressionParser |
