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
<concepts>
There are inclusions of the <concept> header (C++20) in the codebase where the default C++ standard in the CMake side is C++17.
<concept>
folly/CMakeLists.txt
Lines 76 to 80 in 33f5b67
folly/folly/algorithm/simd/detail/Traits.h
Line 24 in 33f5b67
folly/folly/algorithm/simd/FindFixed.h
Line 22 in 33f5b67
In other places this seems to be included if the header is available:
folly/folly/container/detail/F14Table.h
Lines 53 to 55 in 33f5b67
This breaks the build in environments where the <concepts> header isn't available.
https://en.cppreference.com/w/cpp/header/concepts
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are inclusions of the
<concept>
header (C++20) in the codebase where the default C++ standard in the CMake side is C++17.folly/CMakeLists.txt
Lines 76 to 80 in 33f5b67
folly/folly/algorithm/simd/detail/Traits.h
Line 24 in 33f5b67
folly/folly/algorithm/simd/FindFixed.h
Line 22 in 33f5b67
In other places this seems to be included if the header is available:
folly/folly/container/detail/F14Table.h
Lines 53 to 55 in 33f5b67
This breaks the build in environments where the
<concepts>
header isn't available.https://en.cppreference.com/w/cpp/header/concepts
The text was updated successfully, but these errors were encountered: