I am developing a project in Visual Studio 2010, which does not support variadic templates. (It does support rvalue references.)

 

One aspect of my project could benefit greatly from scoped allocator support, so I checked out the 1.49 beta. While the implementation of allocator_traits supports C++03, the scoped_allocator_adaptor implementation requires variadic templates. Is there any plan to make the scoped_allocator_adaptor implementation support C++03? If not, what is the best way to use the new allocator_traits functionality to make sure that the allocator gets passed to contained containers?

 

Thank you,

Erik Jensen