提交 11e0b333 编写于 作者: M millb

Fixed bugs

上级 16ce7983
......@@ -877,6 +877,9 @@ inline T parse(const char * data, size_t size)
return res;
}
template <typename T>
inline void readTextWithSuffix(T & x, ReadBuffer & buf) { readText(x, buf); }
template <typename T>
inline std::enable_if_t<is_integral_v<T>, void>
readTextWithSuffix(T & x, ReadBuffer & buf)
......@@ -956,9 +959,6 @@ readTextWithSuffix(T & x, ReadBuffer & buf)
return;
}
template <typename T>
inline void readTextWithSuffix(T & x, ReadBuffer & buf) { readText(x, buf); }
/// Read something from text format, but expect complete parse of given text
/// For example: 723145 -- ok, 213MB -- not ok
template <typename T>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册