From f4ad2679c9b187c43e3620889c930720712a3d4e Mon Sep 17 00:00:00 2001 From: themancalledjakob Date: Sat, 8 Apr 2023 09:51:31 +0200 Subject: [PATCH] remove couts --- src/LayerComposition.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/LayerComposition.cpp b/src/LayerComposition.cpp index 1a01373..dc2f091 100644 --- a/src/LayerComposition.cpp +++ b/src/LayerComposition.cpp @@ -98,7 +98,6 @@ LayerID LayerComposition::addLayer(const ComboIdentifier & identifier, layer->setProps(props); layer->setup(); std::vector msdfVariations; - cout << "yeah yeah" << layerID << endl; for(const auto & v : variations){ msdfVariations.push_back({v.name, v.value}); } @@ -109,13 +108,9 @@ LayerID LayerComposition::addLayer(const ComboIdentifier & identifier, layers[layer->getId()] = layer; atlasLayerCombos[identifier] = std::move(combo); layerID = layer->getId(); - cout << "yeah yeah and the id is then:" << layerID << endl; } } - }else{ - cout << "whaaat we didnt find anyone like this" << layerID << endl; } - cout << "LayerComposition::addLayer returns " << layerID << endl; return layerID; }