BUG: remove tabs from classnames
This commit is contained in:
parent
f2b59a7601
commit
a39c64ce77
|
@ -26,7 +26,7 @@ std::string cmSystemTools::CleanUpName(const char* name)
|
|||
{
|
||||
std::string className = name;
|
||||
size_t i =0;
|
||||
while(className[i] == ' ')
|
||||
while(className[i] == ' ' || className[i] == '\t')
|
||||
{
|
||||
i++;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue