fix some warnings

This commit is contained in:
BlackMATov
2021-08-06 02:22:14 +07:00
parent f66ef20f99
commit cd52189764
5 changed files with 19 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ using namespace kari_hpp::ext;
TEST_CASE("kari_ext") {
struct box final {
int v;
constexpr box(int v): v(v) {}
constexpr box(int nv): v(nv) {}
};
SUBCASE("fid") {