diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2021-01-22 15:37:26 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2021-01-27 13:45:44 (GMT) |
commit | 4470eb5179d6ccbe5e31cec758546e820752f2d8 (patch) | |
tree | 4db16d6c3a8cb6cd5448074a64cbf2854080586e /Source/cmQtAutoGenerator.h | |
parent | 4f396e6528ae6bfc4b847fa7d67d8e24a3dd4933 (diff) | |
download | CMake-4470eb5179d6ccbe5e31cec758546e820752f2d8.zip CMake-4470eb5179d6ccbe5e31cec758546e820752f2d8.tar.gz CMake-4470eb5179d6ccbe5e31cec758546e820752f2d8.tar.bz2 |
clang-tidy: fix `performance-trivially-destructible` warnings
Diffstat (limited to 'Source/cmQtAutoGenerator.h')
-rw-r--r-- | Source/cmQtAutoGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmQtAutoGenerator.h b/Source/cmQtAutoGenerator.h index 53fbd69..af0b76d 100644 --- a/Source/cmQtAutoGenerator.h +++ b/Source/cmQtAutoGenerator.h @@ -31,7 +31,7 @@ public: public: // -- Construction Logger(); - ~Logger(); + ~Logger() = default; // -- Verbosity unsigned int Verbosity() const { return this->Verbosity_; } void SetVerbosity(unsigned int value) { this->Verbosity_ = value; } |