mirror of
https://github.com/boostorg/unordered.git
synced 2025-11-02 08:41:42 +01:00
dad0d48c9ca6d6a013fa385bcf51af6187d7eacb
Currently just storing the value without a const. Can do better with C++11 constructors, so maybe should do that, and cast away const on compilers without support. Another problem is that std::allocator<const int> doesn't compile for libstdc++ (and potentially other standard libraries), so boost::unordered_set<const int> can't compile. I'm not sure if I should work around that, as it means changing the type of the container (i.e. to boost::unordered_set<const int,... , std::allocator<int>>).
Description
Languages
C++
98.7%
Python
0.7%
CMake
0.5%