We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is due to new behavior in c++17 which is now the default for g++
/bin/sh ../../libtool --tag=CXX --mode=compile x86_64-pc-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I../../code -I../../code -DINSTALLDIR=\"/usr/bin\" -D__STDC_LIMIT_MACROS -D_4ti2_GMP_ -march=native -O2 -pipe -c -o PolyTree.lo PolyTree.cpp In file included from count.h:35, from count.cpp:26: ExponentialSubst.h:62:3: error: ISO C++17 does not allow dynamic exception specifications 62 | throw(NotGenericException); | ^~~~~ ExponentialSubst.h:67:3: error: ISO C++17 does not allow dynamic exception specifications 67 | throw(NotGenericException); | ^~~~~
See https://gcc.gnu.org/gcc-11/porting_to.html in the section on "Dynamic Exception Specifications".
The text was updated successfully, but these errors were encountered:
Fixed in 6dbf7f0
Sorry, something went wrong.
No branches or pull requests
This is due to new behavior in c++17 which is now the default for g++
See https://gcc.gnu.org/gcc-11/porting_to.html in the section on "Dynamic Exception Specifications".
The text was updated successfully, but these errors were encountered: