elimina NOLINT(identifier-naming) obsolets

This commit is contained in:
2026-05-17 17:47:19 +02:00
parent 9e3b960939
commit 3228647738
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ ItemManager::ItemManager(std::string room_name, std::shared_ptr<Scoreboard::Data
}
// Añade un item a la colección
void ItemManager::addItem(std::shared_ptr<Item> item) { // NOLINT(readability-identifier-naming)
void ItemManager::addItem(std::shared_ptr<Item> item) {
items_.push_back(std::move(item));
}