diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-02 16:14:06 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-02 16:14:06 (GMT) |
commit | 439877f6208e25790ab14ae0e66efc392949e9e2 (patch) | |
tree | 47a7f35878e7722002cf5b25217f782ab870cad6 /Source | |
parent | 4cf17062d36ecb87314afbfc0bed4545c8711eeb (diff) | |
download | CMake-439877f6208e25790ab14ae0e66efc392949e9e2.zip CMake-439877f6208e25790ab14ae0e66efc392949e9e2.tar.gz CMake-439877f6208e25790ab14ae0e66efc392949e9e2.tar.bz2 |
Be consistent with single and double quotes
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index f4680ca..757ad6f 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -4496,7 +4496,7 @@ void cmake::RunCheckForUnusedVariables() const { if(!it->second) { - std::string message = "warning: The variable, \"" + it->first + "\", given " + std::string message = "warning: The variable, '" + it->first + "', given " "on the command line, was not used within the build."; cmSystemTools::Message(message.c_str()); } |