mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-24 14:48:14 +03:00
ref. - https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-move-noexcept - https://rules.sonarsource.com/cpp/RSPEC-5018?search=noexecept - https://clang.llvm.org/extra/clang-tidy/checks/performance-noexcept-move-constructor.html > Move constructors of all the types used with STL containers, for example, need to be declared noexcept. Otherwise STL will choose copy constructors instead. The same is valid for move assignment operations.