I have C++ code that used to compile (and work), now I get lots of warnings. This happened after I did a dist-upgrade to Ubuntu-Mate.
warning: dynamic exception specifications are deprecated in C++11
It happens on lines as simple as this (in a header):
static Value getPriorityValue(const std::string& priorityName)
throw(std::invalid_argument);
I got 2545 warning related to this! Is there anyway to tell the compiler to ignore this warning? What is the easiest way to make changes to the code.
Most of the errors are in a 3rd party package so I don't want to make too many modifications to this package.
I do have the -std=c++11 flag on in my compiler.