diff options
author | Brad King <brad.king@kitware.com> | 2016-05-27 13:08:21 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-05-27 13:08:21 (GMT) |
commit | fb1f5d50af2bc97b8dfe783998a66a7a4bea140e (patch) | |
tree | 1b55b11e2626dbf1dc948cce00094d528dbde7c1 /Source/CPack/cmCPackRPMGenerator.h | |
parent | 82c286393afb15346431a8a3f601819698fcb87f (diff) | |
parent | 27ead963052b4c3f4e40ea9e6141ba9902ad310a (diff) | |
download | CMake-fb1f5d50af2bc97b8dfe783998a66a7a4bea140e.zip CMake-fb1f5d50af2bc97b8dfe783998a66a7a4bea140e.tar.gz CMake-fb1f5d50af2bc97b8dfe783998a66a7a4bea140e.tar.bz2 |
Merge topic 'remove-needless-copies'
27ead963 Remove unnecessary local copies.
618fb23f Pass arguments that are not modified as const&.
Diffstat (limited to 'Source/CPack/cmCPackRPMGenerator.h')
-rw-r--r-- | Source/CPack/cmCPackRPMGenerator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackRPMGenerator.h b/Source/CPack/cmCPackRPMGenerator.h index 40b9bb8..b39f2c2 100644 --- a/Source/CPack/cmCPackRPMGenerator.h +++ b/Source/CPack/cmCPackRPMGenerator.h @@ -54,7 +54,8 @@ protected: /** * This method factors out the work done in component packaging case. */ - int PackageOnePack(std::string initialToplevel, std::string packageName); + int PackageOnePack(std::string const& initialToplevel, + std::string const& packageName); /** * The method used to package files when component * install is used. This will create one |