Skip to content

Commit a0e2240

Browse files
authored
Replace std::default_random_engine with std::mt19937 (humble) (#2847)
Signed-off-by: keeponoiro <[email protected]>
1 parent c4e82dd commit a0e2240

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
@@ -183,7 +183,7 @@ class ClientBaseImpl
183183
std::mutex cancel_requests_mutex;
184184

185185
std::independent_bits_engine<
186-
std::default_random_engine, 8, unsigned int> random_bytes_generator;
186+
std::mt19937, 8, unsigned int> random_bytes_generator;
187187
};
188188

189189
ClientBase::ClientBase(

0 commit comments

Comments
 (0)