Skip to content

Commit 6f609f6

Browse files
committed
rxtx::create: mark as noexcept again
Neither the actual function nor rxrx_info.create should not throw as it was at the time of writing this.
1 parent 8575fcb commit 6f609f6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/rxtx.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ struct rxtx {
8484
*/
8585
virtual void join() noexcept;
8686
static rxtx *create(std::string const &name,
87-
const struct rxtx_params *params) noexcept(false);
87+
const struct rxtx_params *params) noexcept;
8888
static void list(bool full) noexcept;
8989
void set_audio_spec(const struct audio_desc *desc, int audio_rx_port,
9090
int audio_tx_port, bool ipv6) noexcept;
@@ -347,7 +347,7 @@ void *rxtx::video_sender_loop() {
347347
*/
348348
rxtx *
349349
rxtx::create(string const &proto,
350-
const struct rxtx_params *params) noexcept(false)
350+
const struct rxtx_params *params) noexcept
351351
{
352352
const struct rxtx_medium_params *params_audio =
353353
&params->medium[TX_MEDIA_AUDIO];

0 commit comments

Comments
 (0)