summaryrefslogtreecommitdiffstats
path: root/Source/cmProcessOutput.h
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2021-01-22 15:37:26 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2021-01-27 13:45:44 (GMT)
commit4470eb5179d6ccbe5e31cec758546e820752f2d8 (patch)
tree4db16d6c3a8cb6cd5448074a64cbf2854080586e /Source/cmProcessOutput.h
parent4f396e6528ae6bfc4b847fa7d67d8e24a3dd4933 (diff)
downloadCMake-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.h2
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.