Quick Q: What is noexcept useful for? -- StackOverflow
Quick A: Guaranteeing "this function won't throw" enables optimization opportunities.
Recently on SO:
What is noexcept useful for?
I saw that c++11 added the noexcept keyword. But I don't really understand why is it useful.
If the function throws when it's not supposed to throw - why would I want the program to crash?
So when should I use it?
Also, how will it work along with compiling with /Eha and using _set_se_translator? This means that any line of code can throw c++ exception - because it might throw a SEH exception (Because of accessing protected memory) and it will be translated to c++ exception.
What will happen then?

A new major version of the Qt has been released.
In case you missed it, now you can develop web apps in C++ to run natively on Google Chrome. This tutorial shows how to develop a Native Client module in C++ and build and run it using PNaCl toolchain: