32 lines
727 B
Diff
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
|
|
|