aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2012-01-31 12:46:14 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2012-01-31 12:46:14 +0100
commit8d6e394b060c7a531737e32902e2048915cb30ae (patch)
treed5afc43a8b612869794b3241ade6124893f2944d /Eigen/src
parent670e3af5a80ba8148cc52849dcb145276fd08d6a (diff)
workaround "empty macro argument" warning
Diffstat (limited to 'Eigen/src')
-rw-r--r--Eigen/src/Core/util/Memory.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Eigen/src/Core/util/Memory.h b/Eigen/src/Core/util/Memory.h
index 1b8f3a99c..6d1ee51cb 100644
--- a/Eigen/src/Core/util/Memory.h
+++ b/Eigen/src/Core/util/Memory.h
@@ -688,24 +688,24 @@ public:
return &value;
}
- aligned_allocator() throw()
+ aligned_allocator() throw( )
{
}
- aligned_allocator( const aligned_allocator& ) throw()
+ aligned_allocator( const aligned_allocator& ) throw( )
{
}
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)();
}