diff options
Diffstat (limited to 'gnuradio-runtime/include/gnuradio/buffer_single_mapped.h')
-rw-r--r-- | gnuradio-runtime/include/gnuradio/buffer_single_mapped.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnuradio-runtime/include/gnuradio/buffer_single_mapped.h b/gnuradio-runtime/include/gnuradio/buffer_single_mapped.h index 3b2edc0aef..d20ab742ac 100644 --- a/gnuradio-runtime/include/gnuradio/buffer_single_mapped.h +++ b/gnuradio-runtime/include/gnuradio/buffer_single_mapped.h @@ -175,8 +175,8 @@ protected: int items_avail, unsigned read_index, char* buffer_ptr, - memcpy_func_t memcpy_func, - memmove_func_t memmove_func); + mem_func_t const& memcpy_func, + mem_func_t const& memmove_func); /*! * \brief Abstracted logic for the output blocked callback function. @@ -204,7 +204,7 @@ protected: virtual bool output_blocked_callback_logic(int output_multiple, bool force, char* buffer_ptr, - memmove_func_t memmove_func); + mem_func_t const& memmove_func); }; } /* namespace gr */ |