
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