Skip to content

Commit

Permalink
IOS: Converts spaces to tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Bénony committed Jan 6, 2016
1 parent 2bffce5 commit a9a61cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions devtools/create_project/xcode.cpp
Expand Up @@ -706,10 +706,10 @@ void XcodeProvider::setupSourcesBuildPhase() {

int order = 0;
for (std::vector<Object*>::iterator file = _buildFile.objects.begin(); file !=_buildFile.objects.end(); ++file) {
const std::string &fileName = (*file)->name;
if (shouldSkipFileForTarget((*file)->id, targetName, fileName)) {
continue;
}
const std::string &fileName = (*file)->name;
if (shouldSkipFileForTarget((*file)->id, targetName, fileName)) {
continue;
}
if (!producesObjectFileOnOSX(fileName)) {
continue;
}
Expand Down

0 comments on commit a9a61cd

Please sign in to comment.