3957a04980
(Container and Move) and a new library (Locale). Resolves: #754865 Added a patch with a manual page for the bjam executable. Added a patch to fix the non-UTF8-encoded example source file. Re-worked a little bit the example section, so as to fix the DOS-formatted and the ISO-8859-encoded files. The examples sub-package itself has been renamed into examples-devel.
26 lines
897 B
Diff
26 lines
897 B
Diff
diff -up boost/numeric/conversion/converter_policies.hpp\~ boost/numeric/conversion/converter_policies.hpp
|
|
--- boost/numeric/conversion/converter_policies.hpp~ 2008-10-13 11:00:03.000000000 +0200
|
|
+++ boost/numeric/conversion/converter_policies.hpp 2011-07-22 11:46:40.961876274 +0200
|
|
@@ -20,6 +20,7 @@
|
|
|
|
#include "boost/mpl/if.hpp"
|
|
#include "boost/mpl/integral_c.hpp"
|
|
+#include "boost/throw_exception.hpp"
|
|
|
|
namespace boost { namespace numeric
|
|
{
|
|
@@ -159,9 +160,9 @@ struct def_overflow_handler
|
|
void operator() ( range_check_result r ) // throw(negative_overflow,positive_overflow)
|
|
{
|
|
if ( r == cNegOverflow )
|
|
- throw negative_overflow() ;
|
|
+ boost::throw_exception( negative_overflow() ) ;
|
|
else if ( r == cPosOverflow )
|
|
- throw positive_overflow() ;
|
|
+ boost::throw_exception( positive_overflow() ) ;
|
|
}
|
|
} ;
|
|
|
|
|
|
Diff finished. Fri Jul 22 11:46:49 2011
|