File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
library_checker_aizu_tests/math Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,4 +62,3 @@ unusedFunction:../kactl/stress-tests/utilities/genTree.h:49
6262containerOutOfBounds:../library/data_structures_[l,r)/uncommon/permutation_tree.hpp:85
6363ctuOneDefinitionRuleViolation:../library/data_structures_[l,r)/bit.hpp:5
6464ctuOneDefinitionRuleViolation:../library/data_structures_[l,r)/lazy_seg_tree.hpp:4
65- shiftTooManyBits:../library/math/matrix_related/xor_basis_ordered.hpp:17
Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ int main() {
3636 int n;
3737 cin >> n;
3838 basis basis1;
39- basis_ordered<int > basis2;
39+ basis_ordered<int > basis2; // to check that it compiles
40+ assert (empty (basis2.b )); // remove unused var warning
4041 basis_ordered<ll> basis3;
4142 basis_ordered<bitset<lg>> basis4;
4243 for (int i = 0 ; i < n; i++) {
@@ -54,7 +55,7 @@ int main() {
5455 int m;
5556 cin >> m;
5657 basis basis5;
57- basis_ordered<int > basis6; // to check that it compiles
58+ basis_ordered<int > basis6;
5859 basis_ordered<ll> basis7;
5960 basis_ordered<bitset<lg>> basis8;
6061 for (int j = 0 ; j < m; j++) {
You can’t perform that action at this time.
0 commit comments