我有一个函数在C++14下使用date.h库工作,但我正在将程序转换为使用C++20,它不再工作。请问我做错了什么?
我的C++14/date.h代码如下:
#include <date/date.h> // latest, installed via vcpkg
#include <chrono>
auto StringToUnix(const std::string& source) -> std::time_t
{
auto in = std::istringstream(source);
auto tp = date::sys_seconds{};
in >> date::parse("%Y-%m-%d %H:%M:%S", tp);
return std::chrono::system_clock::to_time_t(tp);
}
我转换后的C++20函数如下:
#include <chrono>
auto StringToUnix(const std::string& source) -> std::time_t
{
using namespace std::chrono;
auto in = std::istringstream(source);
auto tp = sys_seconds{};
in >> parse("%Y-%m-%d %H:%M:%S", tp);
return system_clock::to_time_t(tp);
}
我在VS2019社区收到的错误(最新(是:
E0304 no instance of overloaded function "parse" matches the argument list
有没有什么微妙的变化,我错过了?请问是什么原因导致了这个错误?
规范中有一个错误正在修复中。VS2019忠实地复制了规范。用string{}
包裹你的格式字符串,或者给它一个尾随的s
文字,把它变成一个字符串,这将解决这个错误。
in >> parse("%Y-%m-%d %H:%M:%S"s, tp);