diff --git a/src/app/data-model/BasicTypes.h b/src/app/data-model/BasicTypes.h index 6bc1c967d18423..4011d7b2180e0c 100644 --- a/src/app/data-model/BasicTypes.h +++ b/src/app/data-model/BasicTypes.h @@ -56,12 +56,24 @@ struct IsBasicType static constexpr bool value = true; }; +template <> +struct IsBasicType +{ + static constexpr bool value = true; +}; + template <> struct IsBasicType { static constexpr bool value = true; }; +template <> +struct IsBasicType +{ + static constexpr bool value = true; +}; + } // namespace DataModel } // namespace app } // namespace chip