summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorExpressionContext.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-23 13:16:55 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-01-23 13:17:49 (GMT)
commita7f5cd45e135dd51d67176fc40e2d769ac5f7db8 (patch)
tree677ad083ef4b1c9f7ca182ef6a29863841bf2169 /Source/cmGeneratorExpressionContext.h
parent22893baed1556420b93c4f3a62b4c450ac354040 (diff)
parent5a0784ddea62ee653a3a1199d4ff2140868d2c1d (diff)
downloadCMake-a7f5cd45e135dd51d67176fc40e2d769ac5f7db8.zip
CMake-a7f5cd45e135dd51d67176fc40e2d769ac5f7db8.tar.gz
CMake-a7f5cd45e135dd51d67176fc40e2d769ac5f7db8.tar.bz2
Merge topic 'tidy-pass-by-value'
5a0784ddea clang-tidy: Pass by value Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2836
Diffstat (limited to 'Source/cmGeneratorExpressionContext.h')
-rw-r--r--Source/cmGeneratorExpressionContext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGeneratorExpressionContext.h b/Source/cmGeneratorExpressionContext.h
index 5b0123e..6e076bf 100644
--- a/Source/cmGeneratorExpressionContext.h
+++ b/Source/cmGeneratorExpressionContext.h
@@ -14,12 +14,12 @@ class cmLocalGenerator;
struct cmGeneratorExpressionContext
{
- cmGeneratorExpressionContext(cmLocalGenerator* lg, std::string const& config,
+ cmGeneratorExpressionContext(cmLocalGenerator* lg, std::string config,
bool quiet, const cmGeneratorTarget* headTarget,
cmGeneratorTarget const* currentTarget,
bool evaluateForBuildsystem,
- cmListFileBacktrace const& backtrace,
- std::string const& language);
+ cmListFileBacktrace backtrace,
+ std::string language);
cmListFileBacktrace Backtrace;
std::set<cmGeneratorTarget*> DependTargets;