From 48707c7d618d601419bef18a96a6df04b1a85d17 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Mon, 5 Jan 2015 12:11:12 +0000 Subject: [PATCH] - Eigen malloc check git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@114 b431acfa-c32f-4a4a-93f1-934dc6c82436 --- radio/Interpolation.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/radio/Interpolation.hpp b/radio/Interpolation.hpp index 4ddaa48..4e7dfed 100644 --- a/radio/Interpolation.hpp +++ b/radio/Interpolation.hpp @@ -92,11 +92,13 @@ public: } } + Eigen::internal::set_is_malloc_allowed(true); // Partial filter responses for (i=0; i < m_M; i++) { m_h[i] = FirComplex::processReal(m_coeff.col(i)); } + Eigen::internal::set_is_malloc_allowed(false); // Combine return horner(mu);