Skip to content

Fix `noexcept` specifiers

David Seifert requested to merge (removed):noexcept into master

@hub I've gone back to commit ef29fc94 and fixed all the noexcept(false) specifiers:

  • throw() -> noexcept (i.e. noexcept(true))
  • throw(SOMETHING) -> (removed). A function without a noexcept is implicitly noexcept(false). In general, adding noexcept(false) is pretty much always redundant, because it's the implied default.

Merge request reports