diff options
Diffstat (limited to 'Tests/AK/TestArray.cpp')
-rw-r--r-- | Tests/AK/TestArray.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/AK/TestArray.cpp b/Tests/AK/TestArray.cpp index 03038a9958..12aefe5455 100644 --- a/Tests/AK/TestArray.cpp +++ b/Tests/AK/TestArray.cpp @@ -8,7 +8,7 @@ #include <AK/Array.h> -static constexpr int constexpr_sum(Span<int const> const span) +static constexpr int constexpr_sum(ReadonlySpan<int> const span) { int sum = 0; for (auto value : span) |