diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-15 22:55:21 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-06-06 07:15:58 (GMT) |
commit | 59e21ffa134faf0b089d9a704b3763e7f6f237d5 (patch) | |
tree | 29594cc437406a631386c2ccf4b1cf316106537f /Source/cmIfCommand.cxx | |
parent | 242dcc2c22535c00348de18bba41605428ccdb73 (diff) | |
download | CMake-59e21ffa134faf0b089d9a704b3763e7f6f237d5.zip CMake-59e21ffa134faf0b089d9a704b3763e7f6f237d5.tar.gz CMake-59e21ffa134faf0b089d9a704b3763e7f6f237d5.tar.bz2 |
Port static calls from cmLocalGenerator to cmOutputConverter.
Diffstat (limited to 'Source/cmIfCommand.cxx')
-rw-r--r-- | Source/cmIfCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmIfCommand.cxx b/Source/cmIfCommand.cxx index 7c4792c..20448c1 100644 --- a/Source/cmIfCommand.cxx +++ b/Source/cmIfCommand.cxx @@ -27,7 +27,7 @@ static std::string cmIfCommandError( i != args.end(); ++i) { err += " "; - err += cmLocalGenerator::EscapeForCMake(i->GetValue()); + err += cmOutputConverter::EscapeForCMake(i->GetValue()); } err += "\n"; return err; |