moya-lang / Allocator

Ultra fast C++11 allocator for STL containers.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Compilation fails after last MSVC update.

moya-mmoczala opened this issue · comments

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!