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
Required Info:
Build this code with C++17 or higher and -Wdeprecated-declarations.
-Wdeprecated-declarations
It compiles without warnings.
It compiles with warnings.
std::allocator<void> is deprecated in C++17 and removed in C++20. https://en.cppreference.com/w/cpp/memory/allocator
std::allocator<void>
The text was updated successfully, but these errors were encountered:
Yeah, I see what you mean about the removal. Do you happen to know what the replacement should be? Also pinging @azeey , @wjwwood for advice.
Sorry, something went wrong.
No branches or pull requests
Bug report
Required Info:
Steps to reproduce issue
Build this code with C++17 or higher and
-Wdeprecated-declarations
.Expected behavior
It compiles without warnings.
Actual behavior
It compiles with warnings.
Additional information
std::allocator<void>
is deprecated in C++17 and removed in C++20.https://en.cppreference.com/w/cpp/memory/allocator
The text was updated successfully, but these errors were encountered: