summaryrefslogtreecommitdiffstats
path: root/contrib/python/pythran/pythran/pythonic/random/shuffle.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/pythran/pythran/pythonic/random/shuffle.hpp')
-rw-r--r--contrib/python/pythran/pythran/pythonic/random/shuffle.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/python/pythran/pythran/pythonic/random/shuffle.hpp b/contrib/python/pythran/pythran/pythonic/random/shuffle.hpp
index 43f0366a79b..5703a7c8438 100644
--- a/contrib/python/pythran/pythran/pythonic/random/shuffle.hpp
+++ b/contrib/python/pythran/pythran/pythonic/random/shuffle.hpp
@@ -52,8 +52,7 @@ namespace random
template <class T, class function>
types::none_type shuffle(T &seq, function &&randf)
{
- std::shuffle(seq.begin(), seq.end(),
- details::URG<function>(std::forward<function>(randf)));
+ std::shuffle(seq.begin(), seq.end(), details::URG<function>(std::forward<function>(randf)));
return builtins::None;
}
} // namespace random