Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/statechart/simple_state.hpp @ 101:c530137014c0
Update Boost headers (1.58.0)
author | Chris Cannam |
---|---|
date | Mon, 07 Sep 2015 11:12:49 +0100 |
parents | 2665513ce2d3 |
children |
comparison
equal
deleted
inserted
replaced
100:793467b5e61c | 101:c530137014c0 |
---|---|
48 #include <boost/intrusive_ptr.hpp> | 48 #include <boost/intrusive_ptr.hpp> |
49 #include <boost/assert.hpp> | 49 #include <boost/assert.hpp> |
50 #include <boost/type_traits/is_base_of.hpp> | 50 #include <boost/type_traits/is_base_of.hpp> |
51 #include <boost/type_traits/is_same.hpp> | 51 #include <boost/type_traits/is_same.hpp> |
52 #include <boost/static_assert.hpp> | 52 #include <boost/static_assert.hpp> |
53 #include <boost/cast.hpp> // boost::polymorphic_downcast | 53 #include <boost/polymorphic_cast.hpp> // boost::polymorphic_downcast |
54 | 54 |
55 #include <cstddef> // std::size_t | 55 #include <cstddef> // std::size_t |
56 | 56 |
57 | 57 |
58 | 58 |
525 if ( get_pointer( pOutermostUnstableState ) == | 525 if ( get_pointer( pOutermostUnstableState ) == |
526 static_cast< state_base_type * >( this ) ) | 526 static_cast< state_base_type * >( this ) ) |
527 { | 527 { |
528 pContext_->set_outermost_unstable_state( | 528 pContext_->set_outermost_unstable_state( |
529 pOutermostUnstableState ); | 529 pOutermostUnstableState ); |
530 // fall through to next case intended | 530 BOOST_FALLTHROUGH; |
531 } | 531 } |
532 else | 532 else |
533 { | 533 { |
534 break; | 534 break; |
535 } | 535 } |