Project

General

Profile

Bug #2966

Updated by Davide Pesavento almost 9 years ago

While looking at some code I noticed that we have move constructors that are *not* declared `noexcept`, which in general is a bad thing. 

 From a quick search in ndn-cxx I've found: 

 ``` 
 src/util/signal-scoped-connection.hpp:     ScopedConnection(ScopedConnection&& other); 
 src/util/scheduler-scoped-event-id.hpp:    ScopedEventId(ScopedEventId&& other); 
 ``` 

 There might be more.

Back