Xcode: Indent using tabs

This commit is contained in:
Gregor Jasny 2015-04-07 19:13:57 +02:00
parent 7b68c8df6b
commit 2e0e205e28
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ void cmXCodeObject::Indent(int level, std::ostream& out)
{
while(level)
{
out << " ";
out << "\t";
level--;
}
}