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 c7b5f3c commit a2cbefbCopy full SHA for a2cbefb
CHANGELOG.md
@@ -5,6 +5,7 @@ Release notes
5
---------------------
6
7
- Python 3 compatible (CI, code, tests)
8
+- Code: use `std::fmod` instead of `std::remainder` only for Visual C++ 9.0 (Windows & python 2.7)
9
- Doc: add a release section
10
- Setup: use ``bumpversion`` to bump the version easily
11
pypitch/pitch.cpp
@@ -21,8 +21,11 @@
21
#ifndef NOMINMAX
22
#define NOMINMAX
23
#endif
24
+// Visual Studio C++ 9.0 / python 2.7
25
+#if (_MSC_VER == 1500)
26
#define remainder fmod
27
28
+#endif
29
30
#include "pitch.hpp"
31
0 commit comments