提交 7bac9698 编写于 作者: C chertus

fix build

上级 9becb21e
......@@ -65,6 +65,11 @@ void parseUUID(const UInt8 * src36, std::reverse_iterator<UInt8 *> dst16)
parseHex(&src36[24], dst16 + 2, 6);
}
UInt128 stringToUUID(const String & str)
{
return parseFromString<UUID>(str);
}
static void __attribute__((__noinline__)) throwAtAssertionFailed(const char * s, ReadBuffer & buf)
{
WriteBufferFromOwnString out;
......
......@@ -561,10 +561,7 @@ inline T parseFromString(const String & str)
return parse<T>(str.data(), str.size());
}
inline UInt128 stringToUUID(const String & str)
{
return parseFromString<UUID>(str);
}
UInt128 stringToUUID(const String & str);
template <typename ReturnType = void>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册