diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2000-10-25 21:18:14 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2000-10-25 21:18:14 (GMT) |
commit | a39c64ce77ff08ae27fda30f132403e34487088c (patch) | |
tree | 355d631dfd85f65c6b77a5d5da34e48a202cef7f /Source/cmSystemTools.cxx | |
parent | f2b59a7601e2c048a2f4cc838ea469ef4b1e8be3 (diff) | |
download | CMake-a39c64ce77ff08ae27fda30f132403e34487088c.zip CMake-a39c64ce77ff08ae27fda30f132403e34487088c.tar.gz CMake-a39c64ce77ff08ae27fda30f132403e34487088c.tar.bz2 |
BUG: remove tabs from classnames
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index aa80d51..a940b36 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -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++; } |