From a5fc85b17eaf523f1d076abf3263ad8f1a0a0a64 Mon Sep 17 00:00:00 2001 From: Simon Detheridge Date: Wed, 14 Jan 2015 10:37:40 +0000 Subject: [PATCH] Fix compiler error due to usage of << to close a template instantiation --- Source/Ember/Isaac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Ember/Isaac.h b/Source/Ember/Isaac.h index 10746f6..804ba1f 100644 --- a/Source/Ember/Isaac.h +++ b/Source/Ember/Isaac.h @@ -54,7 +54,7 @@ public: /// Global ISAAC RNG to be used from anywhere. This is not thread safe, so take caution to only /// use it when no other threads are. /// - static unique_ptr> GlobalRand; + static unique_ptr > GlobalRand; /// /// The structure which holds all of the random information.