浏览代码

fix the build

Kim Kulling 5 年之前
父节点
当前提交
5377d740e8
共有 1 个文件被更改,包括 2 次插入2 次删除
  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
     }