12345678910111213141516171819202122232425 |
- #ifndef BOOST_MSM_BACK_DEFAULT_COMPILE_POLICY_HPP
- #define BOOST_MSM_BACK_DEFAULT_COMPILE_POLICY_HPP
- #include <boost/mpl/bool.hpp>
- namespace boost { namespace msm { namespace back
- {
- struct favor_runtime_speed
- {
- typedef int compile_policy;
- typedef ::boost::mpl::true_ add_forwarding_rows;
- };
- }}}
- #endif
|