Skip to content
Snippets Groups Projects
Commit 01af919b authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Try to fix MSVC error

parent ef861e58
No related branches found
No related tags found
1 merge request!16Unified interface for attributes
Pipeline #32231 failed
......@@ -123,6 +123,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 {
assert(false && "parameter not found");
return std::string(); // useless, but makes MSVC happy
}
constexpr const std::tuple<T...>& getStaticParameters() const {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment