diff options
-rw-r--r-- | include/jau/token_fsm.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/jau/token_fsm.hpp b/include/jau/token_fsm.hpp index d5f120d..0de88a5 100644 --- a/include/jau/token_fsm.hpp +++ b/include/jau/token_fsm.hpp @@ -38,6 +38,7 @@ #include <vector> #include <string> +#include <type_traits> #include <jau/int_types.hpp> #include <jau/darray.hpp> @@ -212,8 +213,7 @@ namespace jau::lang { template<typename State_type, std::enable_if_t<std::is_integral_v<State_type> && std::is_unsigned_v<State_type> && - sizeof(alphabet::code_point_t) <= sizeof(State_type), - bool> = true> + sizeof(alphabet::code_point_t) <= sizeof(State_type), bool> = true> class token_fsm { public: /** |