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:
Douglas Gregor
2004-02-11 18:16:55 +00:00
parent 2fb242eae1
commit f0c5e5e95b

View File

@ -486,10 +486,17 @@ namespace detail {
return f->empty();
}
#if BOOST_WORKAROUND(BOOST_MSVC, <= 1310)
inline bool has_empty_target(const void*)
{
return false;
}
#else
inline bool has_empty_target(...)
{
return false;
}
#endif
} // end namespace function
} // end namespace detail
} // end namespace boost