SYaoJun commented on issue #873: URL: https://github.com/apache/incubator-graphar/issues/873#issuecomment-3949136291
`std::span` is a feature introduced in C++20 (not merely a syntax element). A straightforward solution to this issue is to upgrade the project's C++ standard from C++17 to C++20. This problem has caused numerous PRs to fail, so I believe we should prioritize fixing it first. https://github.com/apache/incubator-graphar/actions/runs/22336590214/job/64630545785 ```cpp /opt/homebrew/include/parquet/metadata.h:397:36: error: no template named 'span' in namespace 'std' 397 | static bool VerifySignature(std::span<const uint8_t> serialized_metadata, | ~~~~~^ /opt/homebrew/include/parquet/metadata.h:398:36: error: no template named 'span' in namespace 'std' 398 | std::span<const uint8_t> signature, | ~~~~~^ 2 errors generated. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
