From 8d177d128f14831f9490467863efb9c92d1480bc Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Tue, 7 Jun 2016 14:27:49 +0100 Subject: sim: Make clang happy Once again appeasing clang. --- src/sim/mathexpr.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/sim/mathexpr.cc') diff --git a/src/sim/mathexpr.cc b/src/sim/mathexpr.cc index d94639823..85c130ad0 100644 --- a/src/sim/mathexpr.cc +++ b/src/sim/mathexpr.cc @@ -40,6 +40,7 @@ #include "sim/mathexpr.hh" #include +#include #include #include @@ -47,7 +48,7 @@ MathExpr::MathExpr(std::string expr) : ops( - std::array { + std::array {{ OpSearch {true, bAdd, 0, '+', [](double a, double b) { return a + b; }}, OpSearch {true, bSub, 0, '-', [](double a, double b) { return a - b; }}, OpSearch {true, bMul, 1, '*', [](double a, double b) { return a * b; }}, @@ -55,7 +56,7 @@ MathExpr::MathExpr(std::string expr) OpSearch {false,uNeg, 2, '-', [](double a, double b) { return -b; }}, OpSearch {true, bPow, 3, '^', [](double a, double b) { return std::pow(a,b); } - }, + }}, }) { // Cleanup -- cgit v1.2.3