diff options
author | Brad King <brad.king@kitware.com> | 2009-06-24 19:09:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-06-24 19:09:50 (GMT) |
commit | b64aadc5b045d85f86e5341992a236f45af59086 (patch) | |
tree | a38bd901167d3ad0aacf51b50805588e603aa42d /Source/cmSystemTools.h | |
parent | 031379abe62ce12906a8f6b035dabe39c81f5d17 (diff) | |
download | CMake-b64aadc5b045d85f86e5341992a236f45af59086.zip CMake-b64aadc5b045d85f86e5341992a236f45af59086.tar.gz CMake-b64aadc5b045d85f86e5341992a236f45af59086.tar.bz2 |
ENH: Remove unused cmSystemTools::RemoveEscapes
The RemoveEscapes method is no longer used anywhere. All uses of it
have been replaced by a real lexer. We can remove the method.
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 0974759..486dcee 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -59,13 +59,7 @@ public: ///! Escape quotes in a string. static std::string EscapeQuotes(const char* str); - - /** - * Given a string, replace any escape sequences with the corresponding - * characters. - */ - static std::string RemoveEscapes(const char*); - + typedef void (*ErrorCallback)(const char*, const char*, bool&, void*); /** * Set the function used by GUI's to display error messages |