clang-tidy
This commit is contained in:
@@ -41,8 +41,8 @@ class Asset { // Gestor de recursos (singleton)
|
||||
AssetType type; // Tipo de recurso
|
||||
bool required; // Indica si el fichero es obligatorio
|
||||
|
||||
AssetItem(std::string filePath, AssetType assetType, bool isRequired)
|
||||
: file(std::move(filePath)), type(assetType), required(isRequired) {} // Constructor
|
||||
AssetItem(std::string file_path, AssetType asset_type, bool is_required)
|
||||
: file(std::move(file_path)), type(asset_type), required(is_required) {} // Constructor
|
||||
};
|
||||
|
||||
// --- Variables internas ---
|
||||
@@ -60,5 +60,5 @@ class Asset { // Gestor de recursos (singleton)
|
||||
~Asset() = default; // Destructor
|
||||
|
||||
// --- Singleton ---
|
||||
static Asset *instance_; // Instancia singleton
|
||||
static Asset *instance; // Instancia singleton
|
||||
};
|
||||
Reference in New Issue
Block a user