From 8f9c45fd32aa5b49b8c08084687be446527f4dd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vicente=20Mataix=20Ferr=C3=A1ndiz?= Date: Thu, 9 Jan 2025 10:52:51 +0100 Subject: [PATCH] [Core] Fix Clang warning when `discard-qualifier` on line 133 of `registry.h` --- kratos/includes/registry.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kratos/includes/registry.h b/kratos/includes/registry.h index ccae39c7e24..f764cbc4fcc 100644 --- a/kratos/includes/registry.h +++ b/kratos/includes/registry.h @@ -130,7 +130,7 @@ class KRATOS_API(KRATOS_CORE) Registry final return mspRootRegistryItem->end(); } - static auto const cend() + static auto cend() { return mspRootRegistryItem->cend(); }