C++ Exception Specification ignored
A function is declared using exception specification, which Visual C++ accepts but does not implement. Code with exception specifications that are ignored during compilation may need to be recompiled and linked to be reused in future versions supporting exception specifications.
You can avoid this warning by using the warning pragma:
#pragma warning( disable : 4290 )