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
VS2019, use C++20:
std::is_pod_v can't be used, compilation failed.
And in VS2019, use C++17:
need to #define _SILENCE_ALL_CXX17_DEPRECATION_WARNINGS, otherwise compilation failed.
Looking forward to updating,thanks.
The text was updated successfully, but these errors were encountered:
Yout don't need to silence all deprecation warnings
#define _SILENCE_CXX20_CODECVT_FACETS_DEPRECATION_WARNING is enough.
Also, they can't just add this define because you need to know that it's using deprecated stuff.
Regarding the std::is_pod_v thing idk what you mean by that because ofc sqlite::database is not a POD (plain old data) type.
VS2019, use C++20:
std::is_pod_v can't be used, compilation failed.
And in VS2019, use C++17:
need to #define _SILENCE_ALL_CXX17_DEPRECATION_WARNINGS, otherwise compilation failed.
Looking forward to updating,thanks.
The text was updated successfully, but these errors were encountered: