workaround "empty macro argument" warning

This commit is contained in:
Gael Guennebaud 2012-01-31 12:46:14 +01:00
parent 670e3af5a8
commit 8d6e394b06

View File

@ -688,24 +688,24 @@ public:
return &value; return &value;
} }
aligned_allocator() throw() aligned_allocator() throw( )
{ {
} }
aligned_allocator( const aligned_allocator& ) throw() aligned_allocator( const aligned_allocator& ) throw( )
{ {
} }
template<class U> template<class U>
aligned_allocator( const aligned_allocator<U>& ) throw() aligned_allocator( const aligned_allocator<U>& ) throw( )
{ {
} }
~aligned_allocator() throw() ~aligned_allocator() throw( )
{ {
} }
size_type max_size() const throw() size_type max_size() const throw( )
{ {
return (std::numeric_limits<size_type>::max)(); return (std::numeric_limits<size_type>::max)();
} }