From 8a9bc12ce99689304b21a003cca88e90aa3b3be0 Mon Sep 17 00:00:00 2001 From: Nicolas RECHATIN Date: Thu, 27 Jul 2023 14:37:51 +0200 Subject: [PATCH] fix : remove debug std::cout --- src/ExchangePlugin/ExchangePlugin_ExportRoot.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ExchangePlugin/ExchangePlugin_ExportRoot.cpp b/src/ExchangePlugin/ExchangePlugin_ExportRoot.cpp index 32f309d71..bfac7338e 100644 --- a/src/ExchangePlugin/ExchangePlugin_ExportRoot.cpp +++ b/src/ExchangePlugin/ExchangePlugin_ExportRoot.cpp @@ -124,11 +124,9 @@ //Get attributes aMedium = (theFeature->data()->string(OperaPlugin_Volume::MEDIUM_ID())->value()); AttributeSelectionListPtr aSelList = theFeature->data()->selectionList(OperaPlugin_Volume::OBJECTS_LIST_ID()); - std::cout << "size = " << aSelList->size() << std::endl; for (int anIndex = 0; anIndex < aSelList->size(); ++anIndex) { - std::cout << "i = " << anIndex << std::endl; // Get feature ResultPtr aResult = aSelList->value(anIndex)->context(); FeaturePtr aSelFeature = aResult->document()->feature(aResult); -- 2.39.2