diff --git a/include/aidge/utils/StaticParameters.hpp b/include/aidge/utils/StaticParameters.hpp index a483fcdb73bc5af94fb2222e43039de1dbb59d11..cb384fe8475359790bc2caf2409bec10c6365102 100644 --- a/include/aidge/utils/StaticParameters.hpp +++ b/include/aidge/utils/StaticParameters.hpp @@ -121,7 +121,7 @@ public: } template <std::size_t SIZE = std::tuple_size<std::tuple<T...>>::value-1> - [[noreturn]] constexpr typename std::enable_if<(SIZE <= 0), std::string>::type getType(std::size_t /*i*/) const { + constexpr typename std::enable_if<(SIZE <= 0), std::string>::type getType(std::size_t /*i*/) const { assert(false && "parameter not found"); return std::string(); // useless, but makes MSVC happy }