mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 03:39:01 +08:00
workaround "empty macro argument" warning
This commit is contained in:
parent
670e3af5a8
commit
8d6e394b06
@ -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)();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user