[test] Patch for Apache stdlib?

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.

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.
Although it is good to wait a bit as a courtesy to Gennadiy, the patch seems so innocuous that I think you can apply it whenever you want to. --Beman

"Beman Dawes" <bdawes@acm.org> wrote in message news:47920CC7.5070906@acm.org...
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.
I am about to commit the change that will eliminate dependency on _set_se_translator for msvc 8.0 ond newer.
Although it is good to wait a bit as a courtesy to Gennadiy, the patch seems so innocuous that I think you can apply it whenever you want to.
Please go ahead. Gennadiy

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
participants (4)
-
Beman Dawes
-
David Deakins
-
Gennadiy Rozental
-
John Maddock