Commit 32b09f77 authored by Paul Asmuth's avatar Paul Asmuth
Browse files

inspect long

parent f6617c91
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -44,6 +44,12 @@ std::string inspect<long long>(
  return std::to_string(value);
}

template <>
std::string inspect<long>(
    const long& value) {
  return std::to_string(value);
}

template <>
std::string inspect<float>(const float& value) {
  return std::to_string(value);