summaryrefslogtreecommitdiff
path: root/Tests/AK/TestBitCast.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/AK/TestBitCast.cpp')
-rw-r--r--Tests/AK/TestBitCast.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/AK/TestBitCast.cpp b/Tests/AK/TestBitCast.cpp
index baf270f9b6..29ae53f305 100644
--- a/Tests/AK/TestBitCast.cpp
+++ b/Tests/AK/TestBitCast.cpp
@@ -9,7 +9,7 @@
#include <AK/BitCast.h>
template<typename A, typename B>
-void check_cast_both_ways(const A& a, const B& b)
+void check_cast_both_ways(A const& a, B const& b)
{
EXPECT_EQ((bit_cast<A, B>(b)), a);
EXPECT_EQ((bit_cast<B, A>(a)), b);