From: Slawek Figiel Date: Fri, 9 Feb 2024 12:02:12 +0000 (+0100) Subject: [#3207] Replace boost radom with std X-Git-Tag: Kea-2.5.6~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49e2b0019f4bcd7ef21ebb4ec5fc9d630f16e041;p=thirdparty%2Fkea.git [#3207] Replace boost radom with std --- diff --git a/src/bin/perfdhcp/test_control.h b/src/bin/perfdhcp/test_control.h index 87955532bf..6ad3ca781e 100644 --- a/src/bin/perfdhcp/test_control.h +++ b/src/bin/perfdhcp/test_control.h @@ -23,9 +23,8 @@ #include #include #include -#include -#include +#include #include #include #include @@ -207,8 +206,8 @@ public: } private: - boost::random::uniform_int_distribution<> distribution; - boost::random::mt19937 randomnessGenerator; + std::uniform_int_distribution<> distribution; + std::mt19937 randomnessGenerator; }; /// \brief Length of the Ethernet HW address (MAC) in bytes.