summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-01-22 15:33:56 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-01-22 20:28:42 (GMT)
commitbde0dab15d6bdefeadd329a67dbe53812d9f3254 (patch)
treecb222b32ae0d9d6d495d08847d995fa799beeefb /Source/cmMakefile.cxx
parentbf1e1bf1d0a8a966af0c8e454d0bc11b5ed874e1 (diff)
downloadCMake-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.cxx2
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();