We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When building on Windows with clang, clang defaults to Visual Studio (Windows SDK) headers. There is no int64 defined inside the std namespace.
As specified in http://en.cppreference.com/w/cpp/types/integer, those int64 types (lines 209 and 210) are not defined in std, but open in cstdint.
The text was updated successfully, but these errors were encountered:
std::int64_t is defined in std, but in the <cstdint> header, which isn't currently included. Should just be able to add that header.
std::int64_t
std
<cstdint>
Sorry, something went wrong.
7f4dd5d
Thanks for reporting!
No problem, thanks to you for the best json C++ lib!
nlohmann
No branches or pull requests
When building on Windows with clang, clang defaults to Visual Studio (Windows SDK) headers. There is no int64 defined inside the std namespace.
As specified in http://en.cppreference.com/w/cpp/types/integer, those int64 types (lines 209 and 210) are not defined in std, but open in cstdint.
The text was updated successfully, but these errors were encountered: