Boost logo

Boost :

From: David Deakins (ddeakins_at_[hidden])
Date: 2008-01-21 15:01:56


John Maddock wrote:
> Is there any reason why this patch:
> http://svn.boost.org/trac/boost/ticket/1542 can't be immediately applied to
> the Trunk? BTW <eh.h> is documented by MS as being the *required* header in
> order to use _set_se_translator see
> http://msdn2.microsoft.com/en-us/library/5z4bw5h5(VS.80).aspx so unless
> there are any objections, I'll probably apply this later this weekend.
>
> Regards, John.
>

I just committed a minor amendment to this change. Windows CE does not
define the eh.h header (since it does not have support for
_set_se_translator). To accommodate this, I modified:

# if defined(__MWERKS__) || defined(BOOST_MSVC)
# include <eh.h>
# endif

to:

# if defined(__MWERKS__) || (defined(BOOST_MSVC) && !defined(UNDER_CE))
# include <eh.h>
# endif

-Dave


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