src: remove unused function

PR-URL: https://github.com/nodejs/node/pull/9243
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
Brian White 2016-10-23 04:08:18 -04:00 committed by James M Snell
parent e8eaaa7724
commit ed41d8d569

View File

@ -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