summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnand Thakker <github@anandthakker.net>2017-10-30 11:06:11 -0400
committerAnand Thakker <github@anandthakker.net>2017-10-30 14:54:25 -0400
commit09eda466aec23baffe32fbe3b96050e6e457dfaf (patch)
treebda093a68fde9d57c7e11ecb7d38aa9acc70e9f2
parent4d3ee2f34a7b1b07b97f331e2ecdf3d611dbfbc5 (diff)
downloadqtlocation-mapboxgl-09eda466aec23baffe32fbe3b96050e6e457dfaf.tar.gz
Silence spurious clang-tidy warning
For some reason, the modernize-use-equals-default rule
-rw-r--r--include/mbgl/style/expression/expression.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/style/expression/expression.hpp b/include/mbgl/style/expression/expression.hpp
index 85fffae938..929134d473 100644
--- a/include/mbgl/style/expression/expression.hpp
+++ b/include/mbgl/style/expression/expression.hpp
@@ -78,7 +78,7 @@ public:
class EvaluationResult : public Result<Value> {
public:
- using Result::Result;
+ using Result::Result; // NOLINT
EvaluationResult(const std::array<double, 4>& arr) :
Result(toExpressionValue(arr))