https://bugs.kde.org/show_bug.cgi?id=401448

Ralf Habacker <ralf.habac...@freenet.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ralf.habac...@freenet.de

--- Comment #1 from Ralf Habacker <ralf.habac...@freenet.de> ---
https://www.christophlassner.de/collection-of-msvc-gcc-compatibility-tricks.html
mentiones the following code to provide std compatible functions for msvc <
2017.

#if defined(_MSC_VER)
#if _MSC_VER < 1800
namespace std {
  template <typename T>
  bool isnan(const T &x) { return _isnan(x); }

  template <typename T>
  bool isinf(const T &x) { return !_finite(x); }
}
#endif
#endif

Beside the option to fix this in kmymoney directly, there is also the option to
add this to the KDE windows supplemental library (kdewin), which is also used
by kmymoney.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to