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/cmProcessOutput.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/cmProcessOutput.h')
-rw-r--r-- | Source/cmProcessOutput.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmProcessOutput.h b/Source/cmProcessOutput.h index a1f73bd..8cee987 100644 --- a/Source/cmProcessOutput.h +++ b/Source/cmProcessOutput.h @@ -47,7 +47,7 @@ public: * 0 as \a maxSize. */ cmProcessOutput(Encoding encoding = Auto, unsigned int maxSize = 1024); - ~cmProcessOutput(); + ~cmProcessOutput() = default; /** * Decode \a raw string using external encoding to internal * encoding in \a decoded. |