From a39c64ce77ff08ae27fda30f132403e34487088c Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 25 Oct 2000 17:18:14 -0400 Subject: BUG: remove tabs from classnames --- Source/cmSystemTools.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++; } -- cgit v0.12