You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The %T format specifier we are using to generate the timestamp is not supported by all compilers:
/home/runner/work/simplecpp/simplecpp/simplecpp.cpp: In function ‘std::string getTimeDefine(const tm*)’:
/home/runner/work/simplecpp/simplecpp/simplecpp.cpp:3291:34: error: ISO C++98 does not support the ‘%T’ gnu_strftime format [-Werror=format=]
3291 | strftime(buf, sizeof(buf), "%T", timep);
| ^
The text was updated successfully, but these errors were encountered:
The
%T
format specifier we are using to generate the timestamp is not supported by all compilers:The text was updated successfully, but these errors were encountered: