diff options
author | Brad King <brad.king@kitware.com> | 2017-06-05 13:44:21 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-06-05 13:44:24 (GMT) |
commit | c6ea3f01c3e78145b8fd3dd534d8803d8f7e7bd7 (patch) | |
tree | f4cfbaf9a7901e46f8914351bd52ebe47a132d12 /Source/cmMakefile.cxx | |
parent | 8a68a2ceb355621da21983c2571ead15d2b98dea (diff) | |
parent | b1ec5deaf15be459658b8fb0392e4d4a4ec1a0dd (diff) | |
download | CMake-c6ea3f01c3e78145b8fd3dd534d8803d8f7e7bd7.zip CMake-c6ea3f01c3e78145b8fd3dd534d8803d8f7e7bd7.tar.gz CMake-c6ea3f01c3e78145b8fd3dd534d8803d8f7e7bd7.tar.bz2 |
Merge topic 'lint-function-args'
b1ec5dea Pass large types by const&, small types by value
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !927
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 756179b..802a427 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -3469,7 +3469,7 @@ void cmMakefile::ConfigureString(const std::string& input, std::string& output, int cmMakefile::ConfigureFile(const char* infile, const char* outfile, bool copyonly, bool atOnly, bool escapeQuotes, - const cmNewLineStyle& newLine) + cmNewLineStyle newLine) { int res = 1; if (!this->CanIWriteThisFile(outfile)) { |