summaryrefslogtreecommitdiffstats
path: root/abs/extra/boost/exceptions.patch
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-08-07 19:41:00 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-08-07 19:41:00 (GMT)
commit162e9d1b44e3d7a7f76053653100de66f024b9f1 (patch)
tree69471d4c17d6a4246f7a379923932c4a4f084335 /abs/extra/boost/exceptions.patch
parent87572c0487f7aaa7e045cdc0e91470dabf6853b6 (diff)
downloadlinhes_pkgbuild-162e9d1b44e3d7a7f76053653100de66f024b9f1.zip
linhes_pkgbuild-162e9d1b44e3d7a7f76053653100de66f024b9f1.tar.gz
linhes_pkgbuild-162e9d1b44e3d7a7f76053653100de66f024b9f1.tar.bz2
boost 1.50
Diffstat (limited to 'abs/extra/boost/exceptions.patch')
-rw-r--r--abs/extra/boost/exceptions.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/abs/extra/boost/exceptions.patch b/abs/extra/boost/exceptions.patch
deleted file mode 100644
index 0322db6..0000000
--- a/abs/extra/boost/exceptions.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-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