Search code examples
Why does a throwing move constructor result in copying instead of moving where a strong exception gu...


c++c++11exceptionmove-constructornoexcept

Read More
Why is the clear() function noexcept while the destructor not?...


c++c++11stdnoexcept

Read More
Why does std::vector's swap function have a different noexcept specification than all other cont...


c++c++17stdvectorswapnoexcept

Read More
Does adding noexcept break binary compatibility?...


c++noexceptbinary-compatibility

Read More
Understand what really happens when calling a throwing function in a noexcept function...


c++gccterminatenoexcept

Read More
Should I use noexcept specifier and noexcept operator in most functions in C++?...


c++functionthrownoexcept

Read More
Putting 'noexcept' on possible UB...


c++functionundefined-behaviornoexcept

Read More
Are these three default constructors equivalent in C++?...


c++classstandardsdefault-constructornoexcept

Read More
Why do std::flat_set and std::flat_map have some noexcept functions while other container adapters d...


c++stlnoexceptc++23

Read More
Does noexcept matter with explicitly defaulted move constructor/assignment operator?...


c++move-semanticsnoexcept

Read More
When should I really use noexcept?...


c++c++11exceptionnoexcept

Read More
How to use noexcept in C++ or How does it work?...


c++c++11noexcept

Read More
Why is it allowed to throw an exception inside a noexcept-tagged function?...


c++exceptioncompilationtagsnoexcept

Read More
Should I declare a method noexcept if it never throws when used correctly?...


c++c++11templatesexceptionnoexcept

Read More
How to get noexcept-ness of a FunctionDecl in clang?...


c++clangllvmnoexceptlibtooling

Read More
Proper Usage of `noexcept`...


c++noexcept

Read More
Trait to detect if a function type is maked noexcept...


c++functiontemplate-meta-programmingc++20noexcept

Read More
C++: How to write a concept that demands that constructor is noexcept?...


c++c++20c++-conceptsnoexcept

Read More
Does specifying a constructor as noexcept implicitly result in the nothrow version of the new operat...


c++exceptionconstructornoexceptnothrow

Read More
Why some C++ standard functions are missing literal exception specification?...


c++exceptionlanguage-lawyernoexcept

Read More
what is std::exception::what() and why to use it?...


c++c++11exceptionnoexcept

Read More
Does adding `noexcept(false)` benefit the code in any way?...


c++c++11noexcept

Read More
Enabling warnings when a noexcept function attempts to call non-noexcept function in gcc or clang...


c++g++clangnoexcept

Read More
Is my code ill-formed if I intentionally mark a function [that I know may probably throw] noexcept t...


c++noexcept

Read More
What is the difference between C++03 `throw()` specifier and C++11 `noexcept`?...


c++c++11language-lawyerthrownoexcept

Read More
When is `noexcept` required on move assignment?...


c++noexceptmove-assignment-operator

Read More
Is std::span constructor missing noexcept?...


c++exceptionstlnoexcept

Read More
C++17: Deducing function noexcept specifier as non-type parameter...


c++templatesc++17noexcept

Read More
GCC compiles use of noexcept operator but clang and msvc rejects it...


c++exceptionlanguage-lawyernoexceptexception-specification

Read More
Can the ctor be marked noexcept based on allocator type?...


c++allocatornoexceptc++pmr

Read More
BackNext