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:-
but in the latest version, that's been changed to this:-
I can't find anywhere where noexcept gets defined to throw() - so is this part of some newer C++ specification? (C++11 maybe??)
Code:
void whatever_function() throw();Code:
void whatever_function() noexcept;