1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:17:34 +00:00

AK: Remove an unused variable in the Span test (#2985)

This commit is contained in:
Uma Sankar 2020-08-04 13:56:45 +05:30 committed by GitHub
parent 99d81a5d49
commit e799da1fb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,6 @@ TEST_CASE(default_constructor_is_empty)
TEST_CASE(implicit_converson_to_const)
{
Bytes bytes0;
ReadonlyBytes bytes1 { bytes0 };
[[maybe_unused]] ReadonlyBytes bytes2 = bytes0;
[[maybe_unused]] ReadonlyBytes bytes3 = static_cast<ReadonlyBytes>(bytes2);
}