Add missing space (according to syntax style guide)

This commit is contained in:
Allan Odgaard
2019-08-01 10:05:58 +02:00
parent e155e6810a
commit caefacb911

View File

@@ -68,7 +68,7 @@ namespace oak
}
template <typename _InputIter>
void random_shuffle(_InputIter first, _InputIter last)
void random_shuffle (_InputIter first, _InputIter last)
{
static std::mt19937 g(std::random_device{}());
std::shuffle(first, last, g);