From 8fcb7d1eb573aefc79616e59f7cdc5d8afc25eea Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Thu, 14 Aug 2025 18:05:36 +0200 Subject: [PATCH] eliminat un warning en systemes unix --- source/stage.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/stage.cpp b/source/stage.cpp index 6de0862..9ba9647 100644 --- a/source/stage.cpp +++ b/source/stage.cpp @@ -62,11 +62,8 @@ bool StageManager::loadStagesFromFile(const std::string& filename) { } std::string line; - int line_number = 0; while (std::getline(file, line)) { - line_number++; - // Ignorar líneas vacías y comentarios (líneas que empiezan con #) if (line.empty() || line[0] == '#') { continue;