mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
10 lines
147 B
C++
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});
|
|
}
|
|
}
|