2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 17:32:55 +00:00

Work around older EDG bug

[SVN r14415]
This commit is contained in:
Dave Abrahams
2002-07-11 21:41:12 +00:00
parent 9ff90c98cd
commit d3bbc0eaa5

View File

@@ -89,7 +89,7 @@ struct rvalue_from_python_storage
template <class T>
struct rvalue_from_python_data : rvalue_from_python_storage<T>
{
# if !defined(__MWERKS__) || __MWERKS__ >= 0x3000
# if (!defined(__MWERKS__) || __MWERKS__ >= 0x3000) && (!defined(__EDG_VERSION__) || __EDG_VERSION__ >= 245)
// This must always be a POD struct with m_data its first member.
BOOST_STATIC_ASSERT(offsetof(rvalue_from_python_storage<T>,stage1) == 0);
# endif