diff -Naur .build/boost_1_53_0/boost/assign/list_of.hpp .build/boost_1_53_0_patched/boost/assign/list_of.hpp
|
old
|
new
|
|
| 19 | 19 | #include <boost/assign/assignment_exception.hpp> |
| 20 | 20 | #include <boost/range/iterator_range.hpp> |
| 21 | 21 | #include <boost/config.hpp> |
| | 22 | #include <boost/throw_exception.hpp> |
| 22 | 23 | #include <boost/tuple/tuple.hpp> |
| 23 | 24 | #include <boost/type_traits/remove_const.hpp> |
| 24 | 25 | #include <boost/type_traits/remove_reference.hpp> |
| … |
… |
|
| 176 | 177 | #endif |
| 177 | 178 | const std::size_t sz = ar.size(); |
| 178 | 179 | if( sz < static_cast<const DerivedTAssign*>(this)->size() ) |
| 179 | | throw assign::assignment_exception( "array initialized with too many elements" ); |
| | 180 | throw_exception( assign::assignment_exception( "array initialized with too many elements" ) ); |
| 180 | 181 | std::size_t n = 0; |
| 181 | 182 | iterator i = begin(), |
| 182 | 183 | e = end(); |