aboutsummaryrefslogtreecommitdiffstats
path: root/checks/rng.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-06-28 00:54:38 +0000
committerlloyd <[email protected]>2008-06-28 00:54:38 +0000
commitadfc19b00668f641c07c89bd08452bd3099e99d2 (patch)
tree70c752f69965e68d01e499b8a6993c5312052595 /checks/rng.cpp
parentd9b7e74a4f2660d047cdf92a2af0ad99b319bcc1 (diff)
Change make_rng to be a static member of RandomNumberGenerator
Diffstat (limited to 'checks/rng.cpp')
-rw-r--r--checks/rng.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/rng.cpp b/checks/rng.cpp
index 05cd4da8e..a2e53ba63 100644
--- a/checks/rng.cpp
+++ b/checks/rng.cpp
@@ -8,7 +8,7 @@ RandomNumberGenerator& global_rng()
static RandomNumberGenerator* rng = 0;
if(!rng)
- rng = make_rng();
+ rng = RandomNumberGenerator::make_rng();
return *rng;
}