// // Copyright (c) 2016-2020 Kris Jusiak (kris at jusiak dot net) // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // #include namespace sml = boost::sml; struct e1 {}; struct im_not_a_transition {}; struct not_transitional { auto operator()() const noexcept { using namespace sml; // clang-format off return make_transition_table( *"idle"_s + event = X , im_not_a_transition{} // not transitional ); // clang-format on } }; int main() {}