X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcreaDevManagerLib%2FmodelCDMAppli.cpp;h=4f61e13de3c84c765474ec4d709b798e46a5a265;hb=72a6140565ccd0905f822c7bf17ea471762a9301;hp=586c550dcf01e0e1263297853403956d31839671;hpb=698d779d5af904401fa3640f9a2e1c9a3f4aad28;p=crea.git diff --git a/lib/creaDevManagerLib/modelCDMAppli.cpp b/lib/creaDevManagerLib/modelCDMAppli.cpp index 586c550..4f61e13 100644 --- a/lib/creaDevManagerLib/modelCDMAppli.cpp +++ b/lib/creaDevManagerLib/modelCDMAppli.cpp @@ -191,7 +191,7 @@ const bool modelCDMAppli::Refresh(std::string*& result) std::string applicationName = stdfileName; //check if application already exist bool found = false; - for (int i = 0; !found && i < this->applications.size(); i++) + for (int i = 0; !found && i < (int)(this->applications.size()); i++) { if (this->applications[i]->GetName() == applicationName) { @@ -214,7 +214,7 @@ const bool modelCDMAppli::Refresh(std::string*& result) { //check if folder already exist bool found = false; - for (int i = 0; !found && i < this->children.size(); i++) + for (int i = 0; !found && i < (int)(this->children.size()); i++) { if (this->children[i]->GetName() == stdfileName) { @@ -259,7 +259,7 @@ const bool modelCDMAppli::Refresh(std::string*& result) else { bool found = false; - for (int i = 0; !found && i < this->children.size(); i++) + for (int i = 0; !found && i < (int)(this->children.size()); i++) { if (this->children[i]->GetName() == stdfileName) { @@ -281,7 +281,7 @@ const bool modelCDMAppli::Refresh(std::string*& result) } } - for (int i = 0; i < checkedApplications.size(); i++) + for (int i = 0; i < (int)(checkedApplications.size()); i++) { if(!checkedApplications[i]) { @@ -290,7 +290,7 @@ const bool modelCDMAppli::Refresh(std::string*& result) i--; } } - for (int i = 0; i < checked.size(); i++) + for (int i = 0; i < (int)(checked.size()); i++) { if(!checked[i]) { @@ -311,7 +311,7 @@ void modelCDMAppli::CheckStructure(std::map& properties) if(this->CMakeLists != NULL) { //set properties parameters based on model - for (int i = 0; i < this->applications.size(); i++) + for (int i = 0; i < (int)(this->applications.size()); i++) properties["appli add " + this->applications[i]->GetName()] = false; //open cmakelists @@ -333,7 +333,7 @@ void modelCDMAppli::CheckStructure(std::map& properties) { word = words[0]; CDMUtilities::splitter::split(words, word, " ", CDMUtilities::splitter::empties_ok); - for (int i = 0; i < words.size(); i++) + for (int i = 0; i < (int)(words.size()); i++) { if(words[i].substr(0,2) == "//") break; @@ -371,7 +371,7 @@ void modelCDMAppli::CheckStructure(std::map& properties) } //check libraries' structure - for (int i = 0; i < this->applications.size(); i++) + for (int i = 0; i < (int)(this->applications.size()); i++) { properties["application " + this->applications[i]->GetName()] = true; this->applications[i]->CheckStructure(properties);