- fixed includes after refactor

- fixed mutual inclusions

git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@865 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-05-23 11:48:59 +00:00
parent 48707c7d61
commit 8e2d22f95e
7 changed files with 23 additions and 22 deletions
+5 -5
View File
@@ -5,8 +5,8 @@
* Created on 20. Dezember 2014, 19:02
*/
#ifndef INTERPOLATION_HPP
#define INTERPOLATION_HPP
#ifndef _RADIO_INTERPOLATION_HPP_
#define _RADIO_INTERPOLATION_HPP_
#include <cstdio>
#include "Vector.hpp"
@@ -92,13 +92,13 @@ public:
}
}
Eigen::internal::set_is_malloc_allowed(true);
// 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);
// Eigen::internal::set_is_malloc_allowed(false);
// Combine
return horner(mu);
@@ -437,5 +437,5 @@ private:
} // Radio::Interpolation
} // ::Radio
#endif /* INTERPOLATION_HPP */
#endif /* _RADIO_INTERPOLATION_HPP_ */