add extra warnings for tests

This commit is contained in:
2019-05-14 12:55:42 +07:00
parent c40e901e1a
commit 0c73612fa5
2 changed files with 7 additions and 6 deletions

View File

@@ -95,8 +95,6 @@ namespace
std::forward<Cs>(cs)...);
}
};
constexpr auto f = kari::curry(minus2_gf{}, 10, 20);
}
namespace
@@ -194,10 +192,6 @@ namespace
static box_without_move operator+(const box_without_move& lhs, const box_without_move& rhs) {
return box_without_move(lhs.v() + rhs.v());
}
static box_without_move operator-(const box_without_move& lhs, const box_without_move& rhs) {
return box_without_move(lhs.v() - rhs.v());
}
}
using namespace kari;