Browse Source

fix the build

Kim Kulling 5 years ago
parent
commit
5377d740e8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      test/unit/RandomNumberGeneration.h

+ 2 - 2
test/unit/RandomNumberGeneration.h

@@ -54,14 +54,14 @@ public:
     RandomUniformRealGenerator() :
             dist_(),
             rd_(), 
-            re_(rd_()),  {
+            re_(rd_())  {
         // empty
     }
     
     RandomUniformRealGenerator(T min, T max) :
             dist_(min, max),
             rd_(),
-            re_(rd_()),  {
+            re_(rd_())  {
         // empty
     }