From bca1cf52386a9a1a62adabf82c54638fc4ccd36a Mon Sep 17 00:00:00 2001 From: Christophe Date: Thu, 18 Jan 2024 13:20:39 +0100 Subject: [PATCH] gne --- test/ext/ext_vector_integer_sized.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/ext/ext_vector_integer_sized.cpp b/test/ext/ext_vector_integer_sized.cpp index 52b3f4ef8..7861d19ba 100644 --- a/test/ext/ext_vector_integer_sized.cpp +++ b/test/ext/ext_vector_integer_sized.cpp @@ -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; }