forked from boostorg/function
Work around a GCC 2.95.3 bug triggered by the workaround to a VC++ 7.1 bug...
[SVN r22242]
This commit is contained in:
@ -486,10 +486,17 @@ namespace detail {
|
|||||||
return f->empty();
|
return f->empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if BOOST_WORKAROUND(BOOST_MSVC, <= 1310)
|
||||||
inline bool has_empty_target(const void*)
|
inline bool has_empty_target(const void*)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
inline bool has_empty_target(...)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
} // end namespace function
|
} // end namespace function
|
||||||
} // end namespace detail
|
} // end namespace detail
|
||||||
} // end namespace boost
|
} // end namespace boost
|
||||||
|
Reference in New Issue
Block a user