ClickHouse/base/base/int8_to_string.cpp
2024-02-06 20:33:32 +01:00

10 lines
147 B
C++

#include <base/int8_to_string.h>
namespace std
{
std::string to_string(Int8 v) /// NOLINT (cert-dcl58-cpp)
{
return to_string(int8_t{v});
}
}