diff options
author | Nick Foster | 2012-02-22 08:46:55 -0800 |
---|---|---|
committer | Nick Foster | 2012-02-22 08:46:55 -0800 |
commit | 330cddf31208b843c0997c6fb05cb3facf31f536 (patch) | |
tree | 701ff3329a12e1fc8e12711dc2c308ef6e1d3edd | |
parent | fa8ab7cb146287a9f0d8db67e3126ab4a867a201 (diff) | |
download | gnuradio-330cddf31208b843c0997c6fb05cb3facf31f536.tar.gz gnuradio-330cddf31208b843c0997c6fb05cb3facf31f536.tar.bz2 gnuradio-330cddf31208b843c0997c6fb05cb3facf31f536.zip |
Remove ORC invocation since // doesn't dissuade the generator.
-rw-r--r-- | volk/include/volk/volk_32fc_s32fc_multiply_32fc_a.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/volk/include/volk/volk_32fc_s32fc_multiply_32fc_a.h b/volk/include/volk/volk_32fc_s32fc_multiply_32fc_a.h index 75cf8c8b2..665fad47a 100644 --- a/volk/include/volk/volk_32fc_s32fc_multiply_32fc_a.h +++ b/volk/include/volk/volk_32fc_s32fc_multiply_32fc_a.h @@ -25,20 +25,6 @@ static inline void volk_32fc_s32fc_multiply_32fc_a_generic(lv_32fc_t* cVector, c } #endif /* LV_HAVE_GENERIC */ -#ifdef LV_HAVE_ORC - /*! - \brief Multiplies the two input complex vectors and stores their results in the third vector - \param cVector The vector where the results will be stored - \param aVector One of the vectors to be multiplied - \param bVector One of the vectors to be multiplied - \param num_points The number of complex values in aVector and bVector to be multiplied together and stored into cVector - */ -extern void volk_32fc_s32fc_multiply_32fc_a_orc_impl(lv_32fc_t* cVector, const lv_32fc_t* aVector, const lv_32fc_t scalar, unsigned int num_points); -//static inline void volk_32fc_s32fc_multiply_32fc_a_orc(lv_32fc_t* cVector, const lv_32fc_t* aVector, const lv_32fc_t scalar, unsigned int num_points){ -// volk_32fc_s32fc_multiply_32fc_a_orc_impl(cVector, aVector, scalar, num_points); -//} -#endif /* LV_HAVE_ORC */ - |