fix the build

pull/3147/head
Kim Kulling 2020-04-15 21:52:21 +02:00 committed by GitHub
parent d46ec3f9b9
commit 5377d740e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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
}