2
0
mirror of https://github.com/boostorg/compute.git synced 2026-01-27 18:52:15 +00:00

Fix seed method call in linear_congruential_engine.hpp

There is no seed method with just one parameter of type result_type.
This commit is contained in:
Jakub Szuppe
2015-12-18 21:37:52 +01:00
parent d2d62f9973
commit 39fa3634e1

View File

@@ -102,7 +102,7 @@ public:
/// \overload
void seed(command_queue &queue)
{
seed(default_seed);
seed(default_seed, queue);
}
/// Generates random numbers and stores them to the range [\p first, \p last).