Skip to content
Snippets Groups Projects

Unified interface for attributes

Merged Olivier BICHLER requested to merge unified_params into main
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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
}
Loading