This repository has been archived on 2026-01-16. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
adobe-source-libraries/asl-boost-1.60.patch
2016-01-14 01:57:03 +00:00

32 lines
727 B
Diff

--- source_release/adobe/eve.hpp~ 2015-11-20 11:35:57.541968704 +0000
+++ source_release/adobe/eve.hpp 2015-11-20 11:37:45.443943283 +0000
@@ -14,6 +14,7 @@
#include <utility>
#include <boost/noncopyable.hpp>
+#include <boost/version.hpp>
#include <adobe/forest.hpp>
#include <adobe/extents.hpp>
@@ -38,6 +39,13 @@
#if !defined(ADOBE_NO_DOCUMENTATION)
namespace boost {
+#if BOOST_VERSION >= 106000
+ template <>
+ struct is_pod<adobe::implementation::view_proxy_t>
+ : true_type
+ {
+ };
+#else
namespace detail {
template <>
struct is_pod_impl<adobe::implementation::view_proxy_t>
@@ -45,6 +53,7 @@
BOOST_STATIC_CONSTANT(bool, value = true);
};
}
+#endif
}
#endif