From 5377d740e82917c05da7f84f200e4085a5dc1288 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Wed, 15 Apr 2020 21:52:21 +0200 Subject: [PATCH] fix the build --- test/unit/RandomNumberGeneration.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/RandomNumberGeneration.h b/test/unit/RandomNumberGeneration.h index ed7bda55e..a313f34ae 100644 --- a/test/unit/RandomNumberGeneration.h +++ b/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 }