forked from boostorg/regex
Fix allocator concept to match C++03 requirements in table 32.
[SVN r62120]
This commit is contained in:
@ -106,14 +106,9 @@ public:
|
|||||||
|
|
||||||
allocator_architype();
|
allocator_architype();
|
||||||
allocator_architype(const 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 <class Other>
|
template <class Other>
|
||||||
allocator_architype(const allocator_architype<Other>&);
|
allocator_architype(const allocator_architype<Other>&);
|
||||||
#endif
|
|
||||||
|
|
||||||
void construct(pointer, const_reference);
|
void construct(pointer, const_reference);
|
||||||
void destroy(pointer);
|
void destroy(pointer);
|
||||||
|
Reference in New Issue
Block a user