early-access version 2853
This commit is contained in:
16
externals/vcpkg/ports/tinyexpr/fix-issue-34.patch
vendored
Executable file
16
externals/vcpkg/ports/tinyexpr/fix-issue-34.patch
vendored
Executable file
@@ -0,0 +1,16 @@
|
||||
diff --git a/tinyexpr.c b/tinyexpr.c
|
||||
index 90ed8fc..570f2fd 100755
|
||||
--- a/tinyexpr.c
|
||||
+++ b/tinyexpr.c
|
||||
@@ -49,6 +49,11 @@ For log = natural log uncomment the next line. */
|
||||
#define INFINITY (1.0/0.0)
|
||||
#endif
|
||||
|
||||
+/* https://github.com/codeplea/tinyexpr/issues/34 */
|
||||
+#ifdef _MSC_VER
|
||||
+#pragma function(ceil)
|
||||
+#pragma function(floor)
|
||||
+#endif
|
||||
|
||||
typedef double (*te_fun2)(double, double);
|
||||
|
Reference in New Issue
Block a user