diff options
author | Brad King <brad.king@kitware.com> | 2015-07-07 18:31:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-07-08 13:00:00 (GMT) |
commit | bb7eefe4dd4b1385b830ac0f784af883a3d91985 (patch) | |
tree | 55c846e7bb05db830fe52cb333957bd5e4583fde /Source/cmSystemTools.h | |
parent | cedd6e65d22870524eaee1394f023cf001d56aff (diff) | |
download | CMake-bb7eefe4dd4b1385b830ac0f784af883a3d91985.zip CMake-bb7eefe4dd4b1385b830ac0f784af883a3d91985.tar.gz CMake-bb7eefe4dd4b1385b830ac0f784af883a3d91985.tar.bz2 |
cmOutputConverter: Adopt EscapeWindowsShellArgument method
Move it out of cmSystemTools and into cmOutputConverter.
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 8ebb4e3..fb58307 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -256,11 +256,6 @@ public: static void ParseUnixCommandLine(const char* command, std::vector<std::string>& args); - /** Compute an escaped version of the given argument for use in a - windows shell. See kwsys/System.h.in for details. */ - static std::string EscapeWindowsShellArgument(const char* arg, - int shell_flags); - static void EnableMessages() { s_DisableMessages = false; } static void DisableMessages() { s_DisableMessages = true; } static void DisableRunCommandOutput() {s_DisableRunCommandOutput = true; } |