Search code examples
Under which circumstances might std::unique_ptr::operator[] throw?...


c++c++11language-lawyerunique-ptrnoexcept

Read More
Is there any point in declaring a deleted function as noexcept?...


c++noexceptexception-specificationdeleted-functions

Read More
Are C++ standard library implementations allowed to strengthen noexcept specifications?...


c++language-lawyerstdnoexcept

Read More
How should I handle exceptions in a state machine?...


c++exceptiontry-catchnoexcept

Read More
Is there any difference between noexcept and empty throw specification for an lambda expression?...


c++lambdanoexcept

Read More
What does noexcept exactly encompass for constructors?...


c++c++11constructorlanguage-lawyernoexcept

Read More
Casting a function pointer into a noexcept specified function pointer...


c++function-pointersnoexcept

Read More
noexcept of a function returning a class having throwing destructor...


c++c++11noexcept

Read More
Behaviour of noexcept in a class method declarator...


c++c++11standardslanguage-lawyernoexcept

Read More
C++ noexcept unknown member function...


c++expressionnoexcept

Read More
noexcept, inheriting constructors and the invalid use of an incomplete type that is actually complet...


c++c++11language-lawyernoexceptinheriting-constructors

Read More
Shall we use noexcept everywhere in this case?...


c++11error-handlingerror-codenoexcept

Read More
Are inheriting constructors noexcept(true) by default?...


c++c++11constructornoexceptinheriting-constructors

Read More
`static constexpr` function called in a constant expression is...an error?...


c++c++11constexprnoexceptconstant-expression

Read More
Are C++ `try`/`catch` blocks the same as other blocks, regarding RAII?...


c++exceptiontry-catchraiinoexcept

Read More
Can declaring POD types throw an exception?...


c++exceptionnoexceptexception-safety

Read More
Can an uninitialised std::optional or boost::optional constructor throw?...


c++option-typenoexceptboost-optional

Read More
std::terminate and destructors of empty containers...


c++c++11stlnoexceptexception-safety

Read More
Why std::map find() is not declared as noexcept?...


c++dictionarynoexceptexception-specification

Read More
Using placement new on nullptr in decltype() or operator noexcept() context...


c++c++11c++14decltypenoexcept

Read More
What's the difference between the noexcept keyword and _NOEXCEPT macro?...


c++c++11macrosnoexcept

Read More
How do I create a noexcept function pointer?...


c++c++11function-pointersnoexcept

Read More
noexcept operators ->() and operator*() for an iterator?...


c++exceptioniteratorc++14noexcept

Read More
How could the exception specifier on move assignment operator affect that of move constructor?...


c++exceptionlanguage-lawyerc++14noexcept

Read More
Proper implementation of functions with noexcept C++11...


c++c++11noexcept

Read More
Why are std::array::front and std::array::back not noexcept?...


c++arraysc++11c++14noexcept

Read More
Should constructors on std::chrono::...::time_point be noexcept? (Or why aren't they?)...


c++atomicc++-chrononoexcept

Read More
Are the implicit move ctor/assignmet operations noexcept? What about implicit copy operations?...


c++11movenoexcept

Read More
noexcept practice for style and performance?...


c++c++11exceptioncoding-stylenoexcept

Read More
Which operator is called to assign to const reference during constructor (re. noexcept)...


c++referencenoexcept

Read More
BackNext