From 8d6e394b060c7a531737e32902e2048915cb30ae Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 31 Jan 2012 12:46:14 +0100 Subject: [PATCH] workaround "empty macro argument" warning --- Eigen/src/Core/util/Memory.h | 10 +++++----- 1 file 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 - aligned_allocator( const aligned_allocator& ) throw() + aligned_allocator( const aligned_allocator& ) throw( ) { } - ~aligned_allocator() throw() + ~aligned_allocator() throw( ) { } - size_type max_size() const throw() + size_type max_size() const throw( ) { return (std::numeric_limits::max)(); }