Quantcast
Channel: CodeGuru Forums - Visual C++ Programming
Viewing all articles
Browse latest Browse all 3046

[RESOLVED] noexcept

$
0
0
I'm building a popular gtk library called glibmm. Effectively, it's a C++ wrapper around the libglib toolset. Some classes used to have member functions declared like this:-

Code:

void whatever_function() throw();
but in the latest version, that's been changed to this:-

Code:

void whatever_function() noexcept;
I can't find anywhere where noexcept gets defined to throw() - so is this part of some newer C++ specification? (C++11 maybe??)

Viewing all articles
Browse latest Browse all 3046

Trending Articles