diff options
author | Johnathan Corgan | 2012-07-17 15:36:43 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-07-17 15:36:43 -0700 |
commit | 3d868e178994f2e147bbee2c26c09fe283ab6992 (patch) | |
tree | 80fd4ed80e7bb19e4ae59a963f67f8d3ed57f025 | |
parent | 209e98f351f873450c1b2cc0f5bb7877f32e83e4 (diff) | |
download | gnuradio-3d868e178994f2e147bbee2c26c09fe283ab6992.tar.gz gnuradio-3d868e178994f2e147bbee2c26c09fe283ab6992.tar.bz2 gnuradio-3d868e178994f2e147bbee2c26c09fe283ab6992.zip |
volk: entirely remove commented out ORC clause for volk_16u_byteswap_u
-rw-r--r-- | volk/include/volk/volk_16u_byteswap_u.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/volk/include/volk/volk_16u_byteswap_u.h b/volk/include/volk/volk_16u_byteswap_u.h index ffdd5ba33..8ef627a62 100644 --- a/volk/include/volk/volk_16u_byteswap_u.h +++ b/volk/include/volk/volk_16u_byteswap_u.h @@ -60,18 +60,4 @@ static inline void volk_16u_byteswap_u_generic(uint16_t* intsToSwap, unsigned in } #endif /* LV_HAVE_GENERIC */ -//#ifdef LV_HAVE_ORC -#if 0 -/*! - \brief Byteswaps (in-place) an unaligned vector of int16_t's. - \param intsToSwap The vector of data to byte swap - \param numDataPoints The number of data points -*/ -extern void volk_16u_byteswap_u_orc_impl(uint16_t* intsToSwap, unsigned int num_points); -static inline void volk_16u_byteswap_u_orc(uint16_t* intsToSwap, unsigned int num_points){ - volk_16u_byteswap_u_orc_impl(intsToSwap, num_points); -} -#endif /* LV_HAVE_ORC */ - - #endif /* INCLUDED_volk_16u_byteswap_u_H */ |