Boost logo

Boost :

From: John Maddock (john_at_[hidden])
Date: 2003-12-01 07:05:35


Here's another minor patch for Boost.Test that gets it compiling with:

Borland C++ in MSVC compatibility mode (_MSC_VER defined as well as
__BORLANDC__).
Borland C++ in strict ANSI mode (BOOST_DISABLE_WIN32 defined).

cvs server: Diffing .
Index: execution_monitor.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/test/src/execution_monitor.cpp,v
retrieving revision 1.29
diff -r1.29 execution_monitor.cpp
46a47
> !defined(__BORLANDC__) &&
\
61c62
< #elif (defined(__BORLANDC__) && defined(_Windows))

---
> #elif (defined(__BORLANDC__) && defined(_Windows) &&
!defined(BOOST_DISABLE_WIN32))
443c444
< #elif (defined(__BORLANDC__) && defined(_Windows))
---
> #elif (defined(__BORLANDC__) && defined(_Windows) &&
!defined(BOOST_DISABLE_WIN32))
OK to commit?
Thanks,
John.

Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk