summaryrefslogtreecommitdiffhomepage
path: root/compat/nan.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'compat/nan.hpp')
-rw-r--r--compat/nan.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/compat/nan.hpp b/compat/nan.hpp
deleted file mode 100644
index 0361367b..00000000
--- a/compat/nan.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#pragma once
-
-#include "export.hpp"
-
-#if defined(__GNUC__)
-OTR_COMPAT_EXPORT bool __attribute__ ((noinline)) nanp(double value);
-#elif defined(_WIN32)
-OTR_COMPAT_EXPORT __declspec(noinline) bool nanp(double value);
-#else
-OTR_COMPAT_EXPORT bool nanp(double value);
-#endif