diff options
Diffstat (limited to 'checks/misc.cpp')
-rw-r--r-- | checks/misc.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/checks/misc.cpp b/checks/misc.cpp index 82b207196..198671451 100644 --- a/checks/misc.cpp +++ b/checks/misc.cpp @@ -25,8 +25,10 @@ void strip(std::string& line) { strip_comments(line); +#if 0 while(line.find(' ') != std::string::npos) line = line.erase(line.find(' '), 1); +#endif while(line.find('\t') != std::string::npos) line = line.erase(line.find('\t'), 1); |