mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 02:52:13 +00:00
18 lines
239 B
C++
18 lines
239 B
C++
#pragma once
|
|
|
|
#include <base/defines.h>
|
|
#include <base/types.h>
|
|
|
|
#include <fmt/format.h>
|
|
|
|
template <>
|
|
struct fmt::formatter<Int8> : fmt::formatter<int8_t>
|
|
{
|
|
};
|
|
|
|
|
|
namespace std
|
|
{
|
|
std::string to_string(Int8 v); /// NOLINT (cert-dcl58-cpp)
|
|
}
|