From d87b7a928da3626ba22b885e7b21f79b451268ca Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Mon, 7 Oct 2024 15:46:16 +0200 Subject: [PATCH] test: const correctness --- test/entt/entity/view.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/entt/entity/view.cpp b/test/entt/entity/view.cpp index 235864a17..dde2f777e 100644 --- a/test/entt/entity/view.cpp +++ b/test/entt/entity/view.cpp @@ -742,7 +742,7 @@ TEST(MultiStorageView, Handle) { ASSERT_EQ(handle, view.handle()); view.refresh(); - auto *other = view.handle(); + const auto *other = view.handle(); ASSERT_NE(other, nullptr);