diff --git a/vortex-filtering/include/vortex_filtering/models/imm_model.hpp b/vortex-filtering/include/vortex_filtering/models/imm_model.hpp index cbc6f05..22d1aea 100644 --- a/vortex-filtering/include/vortex_filtering/models/imm_model.hpp +++ b/vortex-filtering/include/vortex_filtering/models/imm_model.hpp @@ -47,7 +47,6 @@ template class Imm static constexpr bool MIN_DIM_x = std::min(N_DIMS_x); static constexpr size_t N_MODELS = sizeof...(DynModels); - using StateName = decltype(DynModels::StateT::STATE_NAMES); using StateNames = std::tuple...>; static constexpr StateNames ALL_STATE_NAMES = {{DynModels::StateT::STATE_NAMES}...}; diff --git a/vortex-filtering/include/vortex_filtering/models/state.hpp b/vortex-filtering/include/vortex_filtering/models/state.hpp index b777766..2c0457d 100644 --- a/vortex-filtering/include/vortex_filtering/models/state.hpp +++ b/vortex-filtering/include/vortex_filtering/models/state.hpp @@ -21,7 +21,9 @@ struct StateMinMax { template requires std::is_integral_v || std::is_enum_v -using StateMap = std::map; +using StateMapT = std::map; + +using StateMap = StateMapT; template requires std::is_integral_v || std::is_enum_v diff --git a/vortex-filtering/include/vortex_filtering/types/type_aliases.hpp b/vortex-filtering/include/vortex_filtering/types/type_aliases.hpp index ffa6879..fc77a83 100644 --- a/vortex-filtering/include/vortex_filtering/types/type_aliases.hpp +++ b/vortex-filtering/include/vortex_filtering/types/type_aliases.hpp @@ -91,8 +91,6 @@ namespace vortex { // Hover over the types in vscode to see the expanded types -ONE_TYPE_STRUCT(n) - ONE_TYPE_STRUCT(x) ONE_TYPE_STRUCT(z) ONE_TYPE_STRUCT(u)