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

learn more… | top users | synonyms

4
votes
2answers
62 views

Using noexcept as a lambda modifier or parameter constraint

Can the noexcept modifier be applied to a lambda expression? If so, how? Can noexcept be made a constraint on a function argument? For example, something like in the following code, where the meaning ...
5
votes
2answers
229 views

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

Recently in my code I have been explicitly writing noexcept(false) on functions that I know do throw exceptions, mainly for people reading the code. However, I am wondering if this affects the ...
0
votes
0answers
37 views

Should I add a noexcept specifier to all functions that do not throw? [duplicate]

I have a simple question: should I add a noexcept specifier to all functions that do not has a throw inside them or do not call a function that has a throw ? Will it lead to some optimizations to ...
0
votes
0answers
46 views

constexpr different exception specifier when splitting definition and declaration

I have the following test piece of code tested on gcc 4.7.2: #include <iostream> #include <type_traits> #ifdef REMOVE_CONSTEXPR_NOEXCEPT # define CONSTEXPR_NOEXCEPT #else # define ...
5
votes
1answer
201 views

Destructors and noexcept

I am a little bit confused with destructors and noexcept. My understanding was that in C++11 any destructor, including user-defined, is implicitly noexcept(true), even if we throw from it. And one has ...
2
votes
1answer
157 views

noexcept specifier and compiler optimizations

I have read unclear things regarding the noexcept specifier and compiler optimizations. When specifying noexcept the compiler may optimize: Compile time (faster compilation). Execution time (code ...
3
votes
1answer
116 views

nothrow construction of virtual classes in c++11

Take the following code snippet: #include <type_traits> struct X { virtual ~X(); }; static_assert(std::is_nothrow_default_constructible<X>::value, "fail"); Under clang svn, it ...
10
votes
1answer
208 views

Static analysis of noexcept “violations” in C++

I'm trying to write exception safe code. I find that using C++11's noexcept specifier makes this goal a whole lot more achievable. The general idea, of course, is that a function should be marked as ...
5
votes
1answer
80 views

Is knowledge about noexcept-ness supposed to be forwarded when passing around a function pointer?

I have written the following code to test noexcept propagation across function calls, and it seems that it doesn't work as I would have thought. In GCC 4.7.2, A function can effectively be tested ...
11
votes
2answers
893 views

Difference between C++03 throw() specifier C++11 noexcept

Is there any other difference between throw() and noexcept apart from being checked runtime and compile time respectively ? Wikipedia C++11 article suggests that C++03 throw specifiers are ...
9
votes
1answer
442 views

C++11 noexcept qualifier and inline methods

Does C++11 give any guarantees about inline functions or methods, when they make calls to other functions declared with the noexcept qualifier? class My_String { ... const char * c_str () const ...
0
votes
1answer
140 views

noexcept specifying conditions under which function does not throw

I am having some trouble wrapping my head around noexcept. template <int SIZE> int pop(int idx) noexcept(noexcept(SIZE > 0)) // this is what I dont understand { if (idx <= 0) throw ...
70
votes
6answers
4k views

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 consider using it in practice. Based on what I have read so far, the last-minute ...
2
votes
1answer
597 views

How can I properly detect the available C++11 features among GCC versions? [duplicate]

Possible Duplicate: C++11 Feature Checking I'm particularly interested in the case of noexcept specifications which seem to have littered the C++11 standard library with the introduction of ...
2
votes
2answers
152 views

return by value and noexcept

I'm currently trying to get my head around noexcept (like almost everyone I avoided the old "runtime exception specification"). Whilst I think I get the basic idea of noexcept, I'm not sure what ...
3
votes
1answer
189 views

Function with by-value return & noexcept

This question is a dual of "Constructor with by-value parameter & noexcept". That question showed that lifetime management of a by-value function argument is handled by the calling function; ...
6
votes
1answer
411 views

Are move constructors required to be noexcept?

I've been reading some contradicting articles in regards whether move constructors/assignment is allowed to throw or not. Therefore I'd like to ask whether move constructors/assignments are allowed ...
13
votes
1answer
443 views

noexcept specifiers in function typedefs

Are noexcept specifiers accepted in function typedefs? as in: typedef void (*fptr)() noexcept; Intuitively, noexcept specifiers seem to make sense since they would allow some optimisations at ...
21
votes
2answers
374 views

How do I write an ADL-enabled noexcept specification?

Imagine I'm writing some container template or something. And the time comes to specialize std::swap for it. As a good citizen, I'll enable ADL by doing something like this: template <typename ...
13
votes
1answer
185 views

Constructor with by-value parameter & noexcept

In this example code: explicit MyClass(std::wstring text) noexcept; Is the use of noexcept here correct? wstring can potentially throw on construction but does the throw happen before we are in the ...
1
vote
1answer
273 views

C++0x: noexcept(ndebug) for testing?

I read about concern that the overly use of noexcept may hinder a testable library. Consider: T& vector::front() noexcept { assert(!empty()); // <- this may throw in some ...
10
votes
1answer
969 views

“noexcept” vs “Throws: nothing”

While going through the last edits of the C++0x Working draft I found a lot of removal of the keyword noexcept addition of textual Throws: nothing at the same place and vice versa. Just some ...
6
votes
3answers
351 views

Should I use throw() when implementing non-throwing swap?

When implementing the non-throwing swap idiom, should I use throw()? namespace A { struct B { void swap( B& other ) throw() { /* fancy stuff that doesn't throw */ } }; void ...