forked from pool/boost
- update to 1.77.0 OBS-URL: https://build.opensuse.org/request/show/920345 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/boost?expand=0&rev=291
46 lines
1.9 KiB
Diff
46 lines
1.9 KiB
Diff
From 720536a08e4e33639869e1b7a99d9ec923409c0b Mon Sep 17 00:00:00 2001
|
|
From: Matt Borland <matt@mattborland.com>
|
|
Date: Mon, 23 Aug 2021 17:48:28 +0300
|
|
Subject: [PATCH] Fix for issue 675 (#676)
|
|
|
|
---
|
|
.../boost/math/tools/header_deprecated.hpp | 22 ++++++++++++++-----
|
|
test/Jamfile.v2 | 1 +
|
|
test/header_deprecated_test.cpp | 12 ++++++++++
|
|
3 files changed, 29 insertions(+), 6 deletions(-)
|
|
create mode 100644 test/header_deprecated_test.cpp
|
|
|
|
diff --git a/include/boost/math/tools/header_deprecated.hpp b/include/boost/math/tools/header_deprecated.hpp
|
|
index 8f4a5db25..867fcaa21 100644
|
|
--- a/include/boost/math/tools/header_deprecated.hpp
|
|
+++ b/include/boost/math/tools/header_deprecated.hpp
|
|
@@ -6,12 +6,22 @@
|
|
#ifndef BOOST_MATH_TOOLS_HEADER_DEPRECATED
|
|
#define BOOST_MATH_TOOLS_HEADER_DEPRECATED
|
|
|
|
-#ifdef _MSC_VER
|
|
-// Expands to "This header is deprecated; use expr instead."
|
|
-#define BOOST_MATH_HEADER_DEPRECATED(expr) __pragma("This header is deprecated; use " expr " instead.")
|
|
-#else // GNU, Clang, Intel, IBM, etc.
|
|
+#ifndef BOOST_MATH_STANDALONE
|
|
+
|
|
+# include <boost/config/header_deprecated.hpp>
|
|
+# define BOOST_MATH_HEADER_DEPRECATED(expr) BOOST_HEADER_DEPRECATED(expr)
|
|
+
|
|
+#else
|
|
+
|
|
+# ifdef _MSC_VER
|
|
// Expands to "This header is deprecated; use expr instead."
|
|
-#define BOOST_MATH_HEADER_DEPRECATED(expr) _Pragma("This header is deprecated; use " expr " instead.")
|
|
-#endif
|
|
+# define BOOST_MATH_HEADER_DEPRECATED(expr) __pragma("This header is deprecated; use " expr " instead.")
|
|
+# else // GNU, Clang, Intel, IBM, etc.
|
|
+// Expands to "This header is deprecated use expr instead"
|
|
+# define BOOST_MATH_HEADER_DEPRECATED_MESSAGE(expr) _Pragma(#expr)
|
|
+# define BOOST_MATH_HEADER_DEPRECATED(expr) BOOST_MATH_HEADER_DEPRECATED_MESSAGE(message "This header is deprecated use " expr " instead")
|
|
+# endif
|
|
+
|
|
+#endif // BOOST_MATH_STANDALONE
|
|
|
|
#endif // BOOST_MATH_TOOLS_HEADER_DEPRECATED
|