|
Boost-Commit : |
From: gennadiy.rozental_at_[hidden]
Date: 2007-10-18 22:17:52
Author: rogeeff
Date: 2007-10-18 22:17:52 EDT (Thu, 18 Oct 2007)
New Revision: 40172
URL: http://svn.boost.org/trac/boost/changeset/40172
Log:
msvc 6.5 port fix
Text files modified:
trunk/boost/test/impl/execution_monitor.ipp | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
Modified: trunk/boost/test/impl/execution_monitor.ipp
==============================================================================
--- trunk/boost/test/impl/execution_monitor.ipp (original)
+++ trunk/boost/test/impl/execution_monitor.ipp 2007-10-18 22:17:52 EDT (Thu, 18 Oct 2007)
@@ -46,7 +46,7 @@
#include <cstdarg> // for varargs
#ifdef BOOST_NO_STDC_NAMESPACE
-namespace std { using ::strlen; using ::strncat; }
+namespace std { using ::strerror; using ::strlen; using ::strncat; }
#endif
#if defined(_WIN32) && !defined(BOOST_DISABLE_WIN32) && \
@@ -63,6 +63,10 @@
using std::uintptr_t;
# endif
+# if BOOST_WORKAROUND(BOOST_MSVC, < 1300 )
+typedef void* uintptr_t;
+# endif
+
// for the FP control routines
#include <float.h>
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk