Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix MultiConfiguredPC.hxx compilation with C++20 (#737)
Due to the C++20 standard removing the construct and destruct methods from std::allocator, it was necessary to adjust the code to use std::allocator_traits instead which has provided these methods since C++11. Fixes #711 === * Fix MultiConfiguredPC.hxx compilation with C++20 C++20 removed the construct / destruct methods from std::allocator with the replacement methods being part of std::allocator_traits intead. Fixes #711 * Update MultiConfiguredPC.hxx Fix missing } * Update MultiConfiguredPC.hxx Due to the C++20 standard removing the construct and destruct methods from std::allocator, it was necessary to adjust the code to use std::allocator_traits instead which has provided these methods since C++11.
- Loading branch information