moya-lang / Allocator

Ultra fast C++11 allocator for STL containers.
BSD 2-Clause "Simplified" License
270 stars 25 forks source link

Compilation fails after last MSVC update. #2

Closed moya-mmoczala closed 5 years ago

moya-mmoczala commented 6 years ago

The Allocator requires to have one instance per each used container. The new MSVC STL implementation uses one allocator for all instances of a container type. As this is not allowed, therefore the copy construction for the Allocator has been deleted. The library keeps working on other compilers. I am very open to hear any ideas how to solve the issue. Thanks!

moya-mmoczala commented 5 years ago

Fixed