vcpkg/ports/hpx/boost-1.69.patch

37 lines
1.5 KiB
Diff
Raw Normal View History

diff --git a/hpx/exception.hpp b/hpx/exception.hpp
index 0c818088c7b..3eeaa579131 100644
--- a/hpx/exception.hpp
+++ b/hpx/exception.hpp
@@ -50,6 +50,12 @@ namespace hpx
/// Construct a hpx::exception from a boost#system_error.
explicit exception(boost::system::system_error const& e);
+ /// Construct a hpx::exception from a boost#system#error_code (this is
+ /// new for Boost V1.69). This constructor is required to compensate
+ /// for the changes introduced as a resolution to LWG3162
+ /// (https://cplusplus.github.io/LWG/issue3162).
+ explicit exception(boost::system::error_code const& e);
+
/// Construct a hpx::exception from a \a hpx::error and an error message.
///
/// \param e The parameter \p e holds the hpx::error code the new
diff --git a/src/exception.cpp b/src/exception.cpp
index 52c1cceba6b..cb6535fd008 100644
--- a/src/exception.cpp
+++ b/src/exception.cpp
@@ -89,6 +89,14 @@ namespace hpx
LERR_(error) << "created exception: " << this->what();
}
+ /// Construct a hpx::exception from a boost#system#error_code (this is
+ /// new for Boost V1.69).
+ exception::exception(boost::system::error_code const& e)
+ : boost::system::system_error(e)
+ {
+ LERR_(error) << "created exception: " << this->what();
+ }
+
/// Construct a hpx::exception from a \a hpx::error and an error message.
///
/// \param e The parameter \p e holds the hpx::error code the new