activa -Wextra -Wpedantic i neteja warnings
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user