Is there any advantage of using the noexcept
specifiers of C++ while coding for an embedded system?
- Does it make the binary smaller?
- Does it make the code run faster?
- How does it differ from the GCC's
-fno-exceptions
flag? Does using that flag marks every function asnoexcept
?