summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2000-10-25 21:18:14 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2000-10-25 21:18:14 (GMT)
commita39c64ce77ff08ae27fda30f132403e34487088c (patch)
tree355d631dfd85f65c6b77a5d5da34e48a202cef7f /Source
parentf2b59a7601e2c048a2f4cc838ea469ef4b1e8be3 (diff)
downloadCMake-a39c64ce77ff08ae27fda30f132403e34487088c.zip
CMake-a39c64ce77ff08ae27fda30f132403e34487088c.tar.gz
CMake-a39c64ce77ff08ae27fda30f132403e34487088c.tar.bz2
BUG: remove tabs from classnames
Diffstat (limited to 'Source')
-rw-r--r--Source/cmSystemTools.cxx2
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++;
}