activa -Wextra -Wpedantic i neteja warnings

This commit is contained in:
2026-05-19 18:49:51 +02:00
parent 7bd4d4d114
commit be1a9a1d9b
8 changed files with 44 additions and 11 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
#pragma once
#include <cstddef> // for size_t
#include <cstdint> // for uint8_t
#include <string> // for string, basic_string
#include <vector> // for vector
@@ -41,7 +42,7 @@ class Asset {
private:
// Variables
int longest_name_{0}; // Contiene la longitud del nombre de fichero mas largo
std::size_t longest_name_{0}; // Contiene la longitud del nombre de fichero mas largo
std::vector<Item> file_list_; // Listado con todas las rutas a los ficheros
std::string executable_path_; // Ruta al ejecutable
bool verbose_{true}; // Indica si ha de mostrar información por pantalla