summaryrefslogtreecommitdiff
path: root/Tests/AK/TestArray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/AK/TestArray.cpp')
-rw-r--r--Tests/AK/TestArray.cpp2
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)