diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-05-17 12:49:23 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-05-24 09:09:43 -0400 |
commit | a5f8cbe8b149d4b3e1136aa4c07691397d693038 (patch) | |
tree | 721f1f857df24dc64e3673dee5877ba9c0736b53 /Source/cmArchiveWrite.cxx | |
parent | 437789db07258c2a96f32a8c70382b1304292589 (diff) | |
download | cmake-a5f8cbe8b149d4b3e1136aa4c07691397d693038.tar.gz |
clang-tidy: address `modernize-use-default-member-init` lints
Diffstat (limited to 'Source/cmArchiveWrite.cxx')
-rw-r--r-- | Source/cmArchiveWrite.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/cmArchiveWrite.cxx b/Source/cmArchiveWrite.cxx index cfde37c3ae..f29983c219 100644 --- a/Source/cmArchiveWrite.cxx +++ b/Source/cmArchiveWrite.cxx @@ -92,7 +92,6 @@ cmArchiveWrite::cmArchiveWrite(std::ostream& os, Compress c, : Stream(os) , Archive(archive_write_new()) , Disk(archive_read_disk_new()) - , Verbose(false) , Format(format) { // Upstream fixed an issue with their integer parsing in 3.4.0 |