From: Thomas Markwalder Date: Thu, 8 Mar 2018 11:47:05 +0000 (-0500) Subject: [master] Fixed build error under FreeBSD in unit test code X-Git-Tag: trac5560_base X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43b4e956afa8421da0a2691630995eef8b772df4;p=thirdparty%2Fkea.git [master] Fixed build error under FreeBSD in unit test code src/bin/dhcp4/tests/get_config_unittest.cc added "std::" to to_string invocation --- diff --git a/src/bin/dhcp4/tests/get_config_unittest.cc b/src/bin/dhcp4/tests/get_config_unittest.cc index be47e2599d..77f622c045 100644 --- a/src/bin/dhcp4/tests/get_config_unittest.cc +++ b/src/bin/dhcp4/tests/get_config_unittest.cc @@ -7123,7 +7123,7 @@ TEST_P(Dhcp4GetConfigTest, run) { class IntToString { public: std::string operator()(const testing::TestParamInfo& n) { - return to_string(n.param); + return std::to_string(n.param); } };