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
I'm building at the latest commit, f4e0897, on Linux with g++ 14.2.1 and set(DRACO_TRANSCODER_SUPPORTED ON). I get:
set(DRACO_TRANSCODER_SUPPORTED ON)
In file included from …/draco/src/draco/io/gltf_utils.cc:15: …/draco/src/draco/io/gltf_utils.h:35:29: error: expected ‘)’ before ‘value’ 35 | explicit GltfValue(uint8_t value) | ~ ^~~~~~ | ) …/draco/src/draco/io/gltf_utils.h:41:30: error: expected ‘)’ before ‘value’ 41 | explicit GltfValue(uint16_t value) | ~ ^~~~~~ | ) …/draco/src/draco/io/gltf_utils.h:44:30: error: expected ‘)’ before ‘value’ 44 | explicit GltfValue(uint32_t value) | ~ ^~~~~~ | )
This is fixed by #include <cstdint>.
#include <cstdint>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm building at the latest commit, f4e0897, on Linux with g++ 14.2.1 and
set(DRACO_TRANSCODER_SUPPORTED ON)
. I get:This is fixed by
#include <cstdint>
.The text was updated successfully, but these errors were encountered: