This is an automated email from the ASF dual-hosted git repository.
isapego pushed a commit to branch ignite-17607
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/ignite-17607 by this push:
new d96892bd5d IGNITE-17607 Minor fix
d96892bd5d is described below
commit d96892bd5dfd9b21f3c9a78e8964a70b4516bc4d
Author: Igor Sapego <[email protected]>
AuthorDate: Mon Mar 20 19:52:37 2023 +0300
IGNITE-17607 Minor fix
---
modules/platforms/cpp/ignite/client/compute/compute.cpp | 1 -
1 file changed, 1 deletion(-)
diff --git a/modules/platforms/cpp/ignite/client/compute/compute.cpp
b/modules/platforms/cpp/ignite/client/compute/compute.cpp
index 61189b09ac..54ccd519d8 100644
--- a/modules/platforms/cpp/ignite/client/compute/compute.cpp
+++ b/modules/platforms/cpp/ignite/client/compute/compute.cpp
@@ -25,7 +25,6 @@ namespace ignite {
template<typename T>
typename T::value_type get_random_element(const T &cont) {
- // TODO: Move to utils
static std::mutex randomMutex;
static std::random_device rd;
static std::mt19937 gen(rd());