mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 12:09:48 +00:00
BUG: remove tabs from classnames
This commit is contained in:
parent
a39c64ce77
commit
366c783f6c
@ -41,6 +41,11 @@ std::string cmSystemTools::CleanUpName(const char* name)
|
||||
}
|
||||
|
||||
pos = className.find(' ');
|
||||
if(pos != std::string::npos)
|
||||
{
|
||||
className = className.substr(0, pos);
|
||||
}
|
||||
pos = className.find('\t');
|
||||
if(pos != std::string::npos)
|
||||
{
|
||||
className = className.substr(0, pos);
|
||||
|
Loading…
Reference in New Issue
Block a user