diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-04-22 22:03:12 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-04-27 12:56:46 (GMT) |
commit | 44a110eb80d3b0a2c04d7a0eac4f3d6bfba54ebd (patch) | |
tree | 1b0d51bd70d4afd3182b81f8d7a1c6772fb8c964 /Source | |
parent | 5f93cf4afea05ffaf7b688bbc4080a3410a20bc3 (diff) | |
download | CMake-44a110eb80d3b0a2c04d7a0eac4f3d6bfba54ebd.zip CMake-44a110eb80d3b0a2c04d7a0eac4f3d6bfba54ebd.tar.gz CMake-44a110eb80d3b0a2c04d7a0eac4f3d6bfba54ebd.tar.bz2 |
cmInstallGenerator: fix default argument comments
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmInstallGenerator.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmInstallGenerator.cxx b/Source/cmInstallGenerator.cxx index 00eb8c3..a33ad78 100644 --- a/Source/cmInstallGenerator.cxx +++ b/Source/cmInstallGenerator.cxx @@ -41,10 +41,10 @@ void cmInstallGenerator::CheckCMP0082(bool& haveSubdirectoryInstall, void cmInstallGenerator::AddInstallRule( std::ostream& os, std::string const& dest, cmInstallType type, std::vector<std::string> const& files, bool optional /* = false */, - const char* permissions_file /* = 0 */, - const char* permissions_dir /* = 0 */, const char* rename /* = 0 */, - const char* literal_args /* = 0 */, Indent indent, - const char* files_var /* = 0 */) + const char* permissions_file /* = nullptr */, + const char* permissions_dir /* = nullptr */, + const char* rename /* = nullptr */, const char* literal_args /* = nullptr */, + Indent indent, const char* files_var /* = nullptr */) { // Use the FILE command to install the file. std::string stype; |