Skip to content

Commit 6089fa7

Browse files
author
Tae Hyoun Park
committed
suppress compiler warnings
1 parent ea8414a commit 6089fa7

File tree

1 file changed

+2
-2
lines changed
  • include/queryosity/interface

1 file changed

+2
-2
lines changed

include/queryosity/interface/todo.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ template <typename T> class todo;
1212

1313
template <typename U>
1414
static constexpr std::true_type check_lazy(lazy<U> const &);
15-
static constexpr std::false_type check_lazy(...);
15+
static constexpr std::false_type check_lazy(...) {return std::false_type{};}
1616
template <typename U>
1717
static constexpr std::true_type check_todo(todo<U> const &);
18-
static constexpr std::false_type check_todo(...);
18+
static constexpr std::false_type check_todo(...) {return std::false_type{};}
1919

2020
template <typename V>
2121
static constexpr bool is_nominal_v =

0 commit comments

Comments
 (0)