Skip to content

Commit

Permalink
gne
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-lunarg committed Jan 18, 2024
1 parent bfb88b1 commit bca1cf5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/ext/ext_vector_integer_sized.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ static int test_operators()
}

{
genType const A(0);
genType const B(1);
genType const C(2);
genType A(0);
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;
}

Expand Down

0 comments on commit bca1cf5

Please sign in to comment.