We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ea4e76 commit a3670eeCopy full SHA for a3670ee
gnucash/gnucash-core-app.hpp
@@ -25,8 +25,13 @@
25
#define GNUCASH_CORE_APP_HPP
26
27
#ifdef __MINGW32__
28
-#undef _GLIBCXX_USE_C99_MATH_TR1 // Avoid cmath missing function decl.
+// Avoid cmath missing function decl.
29
+#undef _GLIBCXX_USE_C99_MATH_TR1
30
+#if (__GNUC__ > 14) || (__GNUC__ == 14 && __GNUC_MINOR__ >= 1)
31
+#undef _GLIBCXX_USE_C99_MATH_FUNCS
32
#endif
33
+#endif
34
+
35
#include <boost/optional.hpp>
36
#include <boost/program_options.hpp>
37
#include <string>
0 commit comments