remove interface warning tuning

This commit is contained in:
BlackMATov
2022-07-01 22:47:50 +07:00
parent 04dae2799f
commit 83fd973f55
13 changed files with 47 additions and 48 deletions

View File

@@ -12,8 +12,8 @@ namespace
struct clazz {
int i{};
clazz(int i)
: i{i} {
clazz(int ni)
: i{ni} {
++constructor_counter;
}