@@ -79,7 +79,7 @@ using thread_p = std::shared_ptr<lslboost::thread>;
7979
8080 template <typename T>
8181 inline lsl_error_code_t push_sample_noexcept (const T* data, double timestamp = 0.0 ,
82- bool pushthrough = true ) BOOST_NOEXCEPT {
82+ bool pushthrough = true ) noexcept {
8383 try {
8484 enqueue (data, timestamp, pushthrough);
8585 return lsl_no_error;
@@ -135,7 +135,7 @@ using thread_p = std::shared_ptr<lslboost::thread>;
135135 enqueue (&data_buffer[k*num_chans],timestamp_buffer[k],pushthrough && k==num_samples-1 );
136136 }
137137
138- template <class T > int32_t push_chunk_multiplexed_noexcept (const T *data_buffer, const double *timestamp_buffer, std::size_t data_buffer_elements, bool pushthrough=true ) BOOST_NOEXCEPT {
138+ template <class T > int32_t push_chunk_multiplexed_noexcept (const T *data_buffer, const double *timestamp_buffer, std::size_t data_buffer_elements, bool pushthrough=true ) noexcept {
139139 try {
140140 push_chunk_multiplexed (data_buffer, timestamp_buffer, data_buffer_elements, pushthrough);
141141 return lsl_no_error;
@@ -181,7 +181,7 @@ using thread_p = std::shared_ptr<lslboost::thread>;
181181 }
182182 }
183183
184- template <class T > int32_t push_chunk_multiplexed_noexcept (const T *data, std::size_t data_elements, double timestamp=0.0 , bool pushthrough=true ) BOOST_NOEXCEPT {
184+ template <class T > int32_t push_chunk_multiplexed_noexcept (const T *data, std::size_t data_elements, double timestamp=0.0 , bool pushthrough=true ) noexcept {
185185 try {
186186 push_chunk_multiplexed (data, data_elements, timestamp, pushthrough);
187187 return lsl_no_error;
0 commit comments