Skip to content

Commit d126fe2

Browse files
Replace std::default_random_engine with std::mt19937 (humble) (#2847) (#2867)
(cherry picked from commit a0e2240) Signed-off-by: keeponoiro <[email protected]> Co-authored-by: keeponoiro <[email protected]>
1 parent a8b90f5 commit d126fe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rclcpp_action/src/client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ class ClientBaseImpl
181181
std::mutex cancel_requests_mutex;
182182

183183
std::independent_bits_engine<
184-
std::default_random_engine, 8, unsigned int> random_bytes_generator;
184+
std::mt19937, 8, unsigned int> random_bytes_generator;
185185
};
186186

187187
ClientBase::ClientBase(

0 commit comments

Comments
 (0)