|
Boost Testing : |
From: Farid Zaripov (faridz_at_[hidden])
Date: 2008-06-18 07:01:58
Hi all.
Could someone apply the patch below and close the ticket #1542?
(http://svn.boost.org/trac/boost/ticket/1542)
Are there any reasons to not #including <eh.h> on MSVC later than 8.0
(_MSC_VER >= 1410)?
---------------------
Index: boost/test/impl/execution_monitor.ipp
===================================================================
--- boost/test/impl/execution_monitor.ipp (revision 46471)
+++ boost/test/impl/execution_monitor.ipp (working copy)
@@ -65,7 +65,7 @@
# include <windows.h>
-# if defined(__MWERKS__) || (BOOST_WORKAROUND(_MSC_VER, < 1410 ) &&
!defined(UNDER_CE))
+# if defined(__MWERKS__) || (defined(_MSC_VER) && !defined(UNDER_CE))
# include <eh.h>
# endif
---------------------
Thanks.
Farid.