Fix style errors added by parent and grandparent
This commit is contained in:
parent
eeeeca1082
commit
f09ba0f1a2
|
@ -2506,7 +2506,8 @@ cmXCodeObject* cmGlobalXCodeGenerator
|
|||
}
|
||||
else
|
||||
{
|
||||
std::vector<std::string> tgt_folders = cmSystemTools::tokenize(target, "/");
|
||||
std::vector<std::string> tgt_folders =
|
||||
cmSystemTools::tokenize(target, "/");
|
||||
cmStdString curr_tgt_folder;
|
||||
for(std::vector<std::string>::size_type i = 0; i < tgt_folders.size();i++)
|
||||
{
|
||||
|
@ -2543,13 +2544,15 @@ cmXCodeObject* cmGlobalXCodeGenerator
|
|||
//It's a recursive folder structure, let's find the real parent group
|
||||
if(std::string(sg->GetFullName()) != std::string(sg->GetName()))
|
||||
{
|
||||
std::vector<std::string> folders = cmSystemTools::tokenize(sg->GetFullName(), "\\");
|
||||
std::vector<std::string> folders =
|
||||
cmSystemTools::tokenize(sg->GetFullName(), "\\");
|
||||
cmStdString curr_folder = cmtarget.GetName();
|
||||
curr_folder += "/";
|
||||
for(std::vector<std::string>::size_type i = 0; i < folders.size();i++)
|
||||
{
|
||||
curr_folder += folders[i];
|
||||
std::map<cmStdString, cmXCodeObject* >::iterator i_folder = this->GroupNameMap.find(curr_folder);
|
||||
std::map<cmStdString, cmXCodeObject* >::iterator i_folder =
|
||||
this->GroupNameMap.find(curr_folder);
|
||||
//Create new folder
|
||||
if(i_folder == this->GroupNameMap.end())
|
||||
{
|
||||
|
|
|
@ -27,7 +27,8 @@ bool cmSourceGroupCommand
|
|||
delimiter = this->Makefile->GetDefinition("SOURCE_GROUP_DELIMITER");
|
||||
}
|
||||
|
||||
std::vector<std::string> folders = cmSystemTools::tokenize(args[0], delimiter);
|
||||
std::vector<std::string> folders =
|
||||
cmSystemTools::tokenize(args[0], delimiter);
|
||||
|
||||
cmSourceGroup* sg = 0;
|
||||
sg = this->Makefile->GetSourceGroup(folders);
|
||||
|
|
Loading…
Reference in New Issue