mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Prevent libstdc++ copysign declaration error on Win32.
This commit is contained in:
parent
8654cb86c8
commit
2a42078e9a
@ -24,6 +24,9 @@
|
||||
#ifndef GNUCASH_CORE_APP_HPP
|
||||
#define GNUCASH_CORE_APP_HPP
|
||||
|
||||
#ifdef __MINGW32__
|
||||
#undef _GLIBCXX_USE_C99_MATH_TR1 // Avoid cmath missing function decl.
|
||||
#endif
|
||||
#include <boost/program_options.hpp>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
Loading…
Reference in New Issue
Block a user