mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
fix
This commit is contained in:
parent
414693feb2
commit
c6910f39b9
@ -5,11 +5,11 @@
|
||||
/// Saves a format string for already formatted message
|
||||
struct PreformattedMessage
|
||||
{
|
||||
String message;
|
||||
std::string message;
|
||||
std::string_view format_string;
|
||||
|
||||
operator const String & () const { return message; }
|
||||
operator String () && { return std::move(message); }
|
||||
operator const std::string & () const { return message; }
|
||||
operator std::string () && { return std::move(message); }
|
||||
operator fmt::format_string<> () const { UNREACHABLE(); }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user