We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea8414a commit 6089fa7Copy full SHA for 6089fa7
include/queryosity/interface/todo.h
@@ -12,10 +12,10 @@ template <typename T> class todo;
12
13
template <typename U>
14
static constexpr std::true_type check_lazy(lazy<U> const &);
15
-static constexpr std::false_type check_lazy(...);
+static constexpr std::false_type check_lazy(...) {return std::false_type{};}
16
17
static constexpr std::true_type check_todo(todo<U> const &);
18
-static constexpr std::false_type check_todo(...);
+static constexpr std::false_type check_todo(...) {return std::false_type{};}
19
20
template <typename V>
21
static constexpr bool is_nominal_v =
0 commit comments