clang-tidy readability-function-cognitive-complexity
This commit is contained in:
@@ -50,7 +50,7 @@ struct VideoOptions {
|
||||
std::string info; // Información sobre el modo de vídeo
|
||||
|
||||
// Constructor por defecto con valores iniciales
|
||||
VideoOptions() {}
|
||||
VideoOptions() = default;
|
||||
};
|
||||
|
||||
// --- Opciones de música ---
|
||||
@@ -79,9 +79,7 @@ struct AudioOptions {
|
||||
int volume{100}; // Volumen general del audio
|
||||
|
||||
// Constructor por defecto
|
||||
AudioOptions()
|
||||
|
||||
{}
|
||||
AudioOptions() = default;
|
||||
};
|
||||
|
||||
// --- Opciones de configuración ---
|
||||
@@ -119,7 +117,6 @@ struct GamepadOptions {
|
||||
GamepadOptions()
|
||||
: index(INVALID_INDEX),
|
||||
player_id(INVALID_INDEX),
|
||||
|
||||
inputs{
|
||||
InputAction::FIRE_LEFT,
|
||||
InputAction::FIRE_CENTER,
|
||||
|
||||
Reference in New Issue
Block a user