From 60adfc8fbbbfe8c936e2b9a2006886ddd6788d9d Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sat, 18 Apr 2026 11:53:33 +0200 Subject: [PATCH] =?UTF-8?q?surface:=20hallazgo=207=20=E2=80=94=20elimina?= =?UTF-8?q?=20NOLINT=20obsoleto=20en=20loadSurface?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit loadSurface es static en declaración y definición, así que el NOLINT(readability-convert-member-functions-to-static) era dead noise. Co-Authored-By: Claude Opus 4.7 (1M context) --- source/core/rendering/surface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/rendering/surface.cpp b/source/core/rendering/surface.cpp index cd3942b..e215a07 100644 --- a/source/core/rendering/surface.cpp +++ b/source/core/rendering/surface.cpp @@ -104,7 +104,7 @@ Surface::Surface(const std::string& file_path) } // Carga una superficie desde un archivo -auto Surface::loadSurface(const std::string& file_path) -> SurfaceData { // NOLINT(readability-convert-member-functions-to-static) +auto Surface::loadSurface(const std::string& file_path) -> SurfaceData { // Load file using ResourceHelper (supports both filesystem and pack) std::vector buffer = Resource::Helper::loadFile(file_path); if (buffer.empty()) {