Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/orc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-05-18 11:49:01 +0300
committerTim-Philipp Müller <tim@centricular.com>2018-05-18 11:51:04 +0300
commitb244d06a879cea18e2f81a5169d587ae9132f8fd (patch)
tree62c45990d7c86154474fdcd8fa1322b4f24ef4e4 /orc-test/orctest.c
parentcc3331599a777e475baf53cd4ff2efc63c747ef9 (diff)
Fix MSVC compiler warning
The isnan() macro was redefined to _isnan() on MSVC, but it's been in math.h since vs2013, so it should be safe to rely on it unconditionally nowadays, and we have no intention of supporting ancient vs versions anyway.
Diffstat (limited to 'orc-test/orctest.c')
-rw-r--r--orc-test/orctest.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/orc-test/orctest.c b/orc-test/orctest.c
index 7648e11..9f0e942 100644
--- a/orc-test/orctest.c
+++ b/orc-test/orctest.c
@@ -41,7 +41,6 @@
#include <math.h>
#ifdef _MSC_VER
-#define isnan(x) _isnan(x)
#define snprintf _snprintf
#endif