Skip to content

Commit e435ad9

Browse files
committed
refactor(backmp11)!: remove deprecated code
1 parent 406c15d commit e435ad9

2 files changed

Lines changed: 0 additions & 21 deletions

File tree

include/boost/msm/backmp11/detail/state_machine_base.hpp

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -456,24 +456,6 @@ class state_machine_base : public FrontEnd
456456
*this, compile_policy_impl::normalize_event(event), false);
457457
}
458458

459-
// Process all queued events.
460-
template <bool C = event_pool_member::value,
461-
typename = std::enable_if_t<C>>
462-
[[deprecated ("Use process_event_pool() instead")]]
463-
void process_queued_events()
464-
{
465-
process_event_pool();
466-
}
467-
468-
// Process a single queued event.
469-
template <bool C = event_pool_member::value,
470-
typename = std::enable_if_t<C>>
471-
[[deprecated ("Use process_event_pool(1) instead")]]
472-
void process_single_queued_event()
473-
{
474-
process_event_pool(1);
475-
}
476-
477459
// Get the context of the state machine.
478460
template <bool C = !std::is_same_v<context_t, no_context>,
479461
typename = std::enable_if_t<C>>

include/boost/msm/backmp11/state_machine_config.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,6 @@ struct local_transition_owner{};
5151
template <typename T>
5252
struct no_event_pool_container;
5353

54-
using transition_owner [[deprecated("Use local_transition_owner instead")]] =
55-
local_transition_owner;
56-
5754
// Default state machine config.
5855
struct default_state_machine_config
5956
{

0 commit comments

Comments
 (0)