Remove disabled warnings (#1213)

* Remove disabled warnings
This commit is contained in:
Christophe
2024-01-20 10:11:13 +01:00
committed by GitHub
parent b06b775c1c
commit f86092a658
182 changed files with 2669 additions and 1719 deletions

View File

@@ -65,13 +65,12 @@ static int test_operators()
}
{
genType const A(0);
genType const B(1);
genType const C(2);
genType B(1);
genType C(2);
genType const D = B << B;
genType D = B << B;
Error += D == genType(2) ? 0 : 1;
genType const E = C >> B;
genType E = C >> B;
Error += E == genType(1) ? 0 : 1;
}