From 09555434f66532e2f1e32c4e5c9a85a7a277ce03 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Thu, 8 Jan 2026 23:05:46 +0100 Subject: [PATCH] Fixed multiple definition of 'expected' --- test/test_base64_RFC4648_URL_decoder_with_padding.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test_base64_RFC4648_URL_decoder_with_padding.cpp b/test/test_base64_RFC4648_URL_decoder_with_padding.cpp index 5266d3c9..f98fd948 100644 --- a/test/test_base64_RFC4648_URL_decoder_with_padding.cpp +++ b/test/test_base64_RFC4648_URL_decoder_with_padding.cpp @@ -653,7 +653,6 @@ namespace b64.flush(); CHECK_TRUE(received_final_block); - std::vector expected(input_data.begin(), std::next(input_data.begin(), i)); #include "etl/private/diagnostic_null_dereference_push.h" std::vector expected(input_data.begin(), input_data.begin() + i); std::vector actual(decoded_output);