clang-tidy modernize
This commit is contained in:
@@ -46,14 +46,14 @@ Logo::Logo()
|
||||
}
|
||||
|
||||
// Inicializa el vector de colores
|
||||
color_.push_back(Color(0x00, 0x00, 0x00)); // Black
|
||||
color_.push_back(Color(0x00, 0x00, 0xd8)); // Blue
|
||||
color_.push_back(Color(0xd8, 0x00, 0x00)); // Red
|
||||
color_.push_back(Color(0xd8, 0x00, 0xd8)); // Magenta
|
||||
color_.push_back(Color(0x00, 0xd8, 0x00)); // Green
|
||||
color_.push_back(Color(0x00, 0xd8, 0xd8)); // Cyan
|
||||
color_.push_back(Color(0xd8, 0xd8, 0x00)); // Yellow
|
||||
color_.push_back(Color(0xFF, 0xFF, 0xFF)); // Bright white
|
||||
color_.emplace_back(0x00, 0x00, 0x00); // Black
|
||||
color_.emplace_back(0x00, 0x00, 0xd8); // Blue
|
||||
color_.emplace_back(0xd8, 0x00, 0x00); // Red
|
||||
color_.emplace_back(0xd8, 0x00, 0xd8); // Magenta
|
||||
color_.emplace_back(0x00, 0xd8, 0x00); // Green
|
||||
color_.emplace_back(0x00, 0xd8, 0xd8); // Cyan
|
||||
color_.emplace_back(0xd8, 0xd8, 0x00); // Yellow
|
||||
color_.emplace_back(0xFF, 0xFF, 0xFF); // Bright white
|
||||
}
|
||||
|
||||
// Destructor
|
||||
|
||||
Reference in New Issue
Block a user