sim: Make clang happy
authorAndreas Hansson <andreas.hansson@arm.com>
Tue, 7 Jun 2016 13:27:49 +0000 (14:27 +0100)
committerAndreas Hansson <andreas.hansson@arm.com>
Tue, 7 Jun 2016 13:27:49 +0000 (14:27 +0100)
Once again appeasing clang.

src/sim/clocked_object.hh
src/sim/mathexpr.cc

index 25e2d008256cbda071fc1a120e6fc9407fd87e02..d85d226c92c7f65182cc9e29bb361eff04fac029 100644 (file)
@@ -264,7 +264,7 @@ class ClockedObject
     void computeStats();
 
     void pwrState(Enums::PwrState);
-    void regStats();
+    void regStats() override;
 
   protected:
 
index d94639823faab1c4ce8c8d947155871f5c7a348f..85c130ad06499101e06bfadb6d228fd40954e52c 100644 (file)
@@ -40,6 +40,7 @@
 #include "sim/mathexpr.hh"
 
 #include <algorithm>
+#include <cmath>
 #include <regex>
 #include <string>
 
@@ -47,7 +48,7 @@
 
 MathExpr::MathExpr(std::string expr)
  : ops(
-    std::array<OpSearch, uNeg + 1> {
+     std::array<OpSearch, uNeg + 1> {{
       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