From e3dfbd0953eaaeb2a1588d6720dfe23513400f63 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Fri, 21 May 2010 16:20:15 +0000 Subject: [PATCH] Fix allocator concept to match C++03 requirements in table 32. [SVN r62120] --- include/boost/regex/concepts.hpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/include/boost/regex/concepts.hpp b/include/boost/regex/concepts.hpp index 016cf0f2..6ef88642 100644 --- a/include/boost/regex/concepts.hpp +++ b/include/boost/regex/concepts.hpp @@ -106,14 +106,9 @@ public: allocator_architype(); allocator_architype(const allocator_architype&); -#if defined(BOOST_MSVC) && (BOOST_MSVC == 1600) - // - // This doesn't appear to be part of the allocator requirements - // in the std, but is required by std::vector in VC10 :-( - // + template allocator_architype(const allocator_architype&); -#endif void construct(pointer, const_reference); void destroy(pointer);