From 43b4e956afa8421da0a2691630995eef8b772df4 Mon Sep 17 00:00:00 2001 From: Thomas Markwalder Date: Thu, 8 Mar 2018 06:47:05 -0500 Subject: [PATCH] [master] Fixed build error under FreeBSD in unit test code src/bin/dhcp4/tests/get_config_unittest.cc added "std::" to to_string invocation --- src/bin/dhcp4/tests/get_config_unittest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }; -- 2.47.2