Commit 910c572f authored by captainwong's avatar captainwong

testing linux build 8

parent b8f8e13b
......@@ -190,8 +190,8 @@ inline LogStream& operator<<(LogStream& s, detail::T t) {
s.append(t.str_, t.len_); return s;
}
static const char* strerror_t(int savedErrno) {
strerror_s(detail::t_errnobuf, savedErrno);
inline const char* strerror_t(int savedErrno) {
strerror_s(detail::t_errnobuf, sizeof(detail::t_errnobuf), savedErrno);
return detail::t_errnobuf;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment