From 238308e0f7b44b1a733b4b38190df24da43d13a5 Mon Sep 17 00:00:00 2001 From: Christoph Hertzberg Date: Wed, 26 Nov 2014 15:45:11 +0100 Subject: [PATCH] bug #909: Removed unreachable return statement --- Eigen/src/Core/util/Memory.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Eigen/src/Core/util/Memory.h b/Eigen/src/Core/util/Memory.h index 3a45196f3..07e54ef06 100644 --- a/Eigen/src/Core/util/Memory.h +++ b/Eigen/src/Core/util/Memory.h @@ -614,7 +614,6 @@ template class aligned_stack_memory_handler void* operator new(size_t size, const std::nothrow_t&) throw() { \ try { return Eigen::internal::conditional_aligned_malloc(size); } \ catch (...) { return 0; } \ - return 0; \ } #else #define EIGEN_MAKE_ALIGNED_OPERATOR_NEW_NOTHROW(NeedsToAlign) \