From 57c0a9b5dc6ba374a78d824681dd4bbd46c026eb Mon Sep 17 00:00:00 2001 From: Brian White Date: Sun, 23 Oct 2016 04:08:18 -0400 Subject: [PATCH] src: remove unused function PR-URL: https://github.com/nodejs/node/pull/9243 Reviewed-By: Anna Henningsen Reviewed-By: James M Snell Reviewed-By: Ben Noordhuis --- src/inspector_agent.cc | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/inspector_agent.cc b/src/inspector_agent.cc index 3f3d548de4cdf6..cb20bd702f37d1 100644 --- a/src/inspector_agent.cc +++ b/src/inspector_agent.cc @@ -170,13 +170,6 @@ std::string GenerateID() { buffer[7]); return uuid; } - -// std::to_string is not available on Smart OS and ARM flavours -const std::string to_string(uint64_t number) { - std::ostringstream result; - result << number; - return result.str(); -} } // namespace