aboutsummaryrefslogtreecommitdiff
path: root/src/common/Utilities/Containers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/Utilities/Containers.h')
-rw-r--r--src/common/Utilities/Containers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Utilities/Containers.h b/src/common/Utilities/Containers.h
index 9c2f7849923..d7103d32e37 100644
--- a/src/common/Utilities/Containers.h
+++ b/src/common/Utilities/Containers.h
@@ -176,7 +176,7 @@ namespace Trinity
template<class C>
inline void RandomShuffle(C& container)
{
- std::shuffle(std::begin(container), std::end(container), SFMTEngine::Instance());
+ std::shuffle(std::begin(container), std::end(container), RandomEngine::Instance());
}
/**