diff options
Diffstat (limited to 'gnuradio-runtime/lib/misc.h')
-rw-r--r-- | gnuradio-runtime/lib/misc.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gnuradio-runtime/lib/misc.h b/gnuradio-runtime/lib/misc.h index 833b6470a5..0d2df38138 100644 --- a/gnuradio-runtime/lib/misc.h +++ b/gnuradio-runtime/lib/misc.h @@ -28,14 +28,13 @@ namespace gr { - GR_RUNTIME_API unsigned int - rounduppow2(unsigned int n); +GR_RUNTIME_API unsigned int rounduppow2(unsigned int n); - // FIXME should be template - GR_RUNTIME_API void zero_vector(std::vector<float> &v); - GR_RUNTIME_API void zero_vector(std::vector<double> &v); - GR_RUNTIME_API void zero_vector(std::vector<int> &v); - GR_RUNTIME_API void zero_vector(std::vector<gr_complex> &v); +// FIXME should be template +GR_RUNTIME_API void zero_vector(std::vector<float>& v); +GR_RUNTIME_API void zero_vector(std::vector<double>& v); +GR_RUNTIME_API void zero_vector(std::vector<int>& v); +GR_RUNTIME_API void zero_vector(std::vector<gr_complex>& v); } /* namespace gr */ |