Top "Noexcept" questions

A C++ keyword used for exception-specifications and to query whether an expression can throw exceptions

When should I really use noexcept?

The noexcept keyword can be appropriately applied to many function signatures, but I am unsure as to when I should …

c++ c++11 exception noexcept
How to deal with noexcept in Visual Studio

I'm trying to create a custom exception that derives from std::exception and overrides what(). At first, I wrote it …

c++ visual-studio-2012 c++11 noexcept
Difference between C++03 throw() specifier C++11 noexcept

Is there any difference between throw() and noexcept other than being checked at runtime and compile time, respectively? This Wikipedia …

c++ exception c++11 throw noexcept
How to use noexcept in C++ or How does it work?

I am unable to understand the use & purpose of the noexcept keyword in C++11/14. I understand that it is …

c++11 noexcept
Noexcept and copy, move constructors

Everywhere I look it seems to be the agreement that the standard library must call copy constructors instead of move …

c++ c++11 noexcept