diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-01-22 15:33:56 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-01-22 20:28:42 (GMT) |
commit | bde0dab15d6bdefeadd329a67dbe53812d9f3254 (patch) | |
tree | cb222b32ae0d9d6d495d08847d995fa799beeefb /Source/cmMakefile.cxx | |
parent | bf1e1bf1d0a8a966af0c8e454d0bc11b5ed874e1 (diff) | |
download | CMake-bde0dab15d6bdefeadd329a67dbe53812d9f3254.zip CMake-bde0dab15d6bdefeadd329a67dbe53812d9f3254.tar.gz CMake-bde0dab15d6bdefeadd329a67dbe53812d9f3254.tar.bz2 |
cmMakefile: Make ConfigureString const.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index fa8918e..55a9d5c 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -3371,7 +3371,7 @@ std::string cmMakefile::GetModulesFile(const char* filename) const void cmMakefile::ConfigureString(const std::string& input, std::string& output, bool atOnly, - bool escapeQuotes) + bool escapeQuotes) const { // Split input to handle one line at a time. std::string::const_iterator lineStart = input.begin(); |