1
0
forked from boostorg/bind

Re-enabled the void returns workarounds for MSVC, since they pass with VC6sp4. Added the void returns test to status/Jamfile.

Modified Files:
	boost/mem_fn.hpp status/Jamfile


[SVN r11863]
This commit is contained in:
Dave Abrahams
2001-12-02 21:51:14 +00:00
parent 18f1b16872
commit fe8a5204cc

View File

@@ -44,7 +44,7 @@ template<class T> T * get_pointer(shared_ptr<T> const & p)
// Void return workaround temporarily disabled on MSVC 6
// causes internal compiler errors with debug info enabled
#if defined(BOOST_NO_VOID_RETURNS) && !defined(BOOST_MSVC)
#if defined(BOOST_NO_VOID_RETURNS)
namespace _mfi // mem_fun_impl
{