Commit 11042c7f by Jean-Louis Leroy

Remove unused FormatKV(..., size_t) overload.

parent 0f5503e9
...@@ -44,12 +44,6 @@ std::string FormatKV(std::string const& key, int64_t value) { ...@@ -44,12 +44,6 @@ std::string FormatKV(std::string const& key, int64_t value) {
return ss.str(); return ss.str();
} }
std::string FormatKV(std::string const& key, std::size_t value) {
std::stringstream ss;
ss << '"' << key << "\": " << value;
return ss.str();
}
int64_t RoundDouble(double v) { int64_t RoundDouble(double v) {
return static_cast<int64_t>(v + 0.5); return static_cast<int64_t>(v + 0.5);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment