aboutsummaryrefslogtreecommitdiffstats
path: root/libtests
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2023-06-01 15:47:36 +0200
committerm-holger <m-holger@kubitscheck.org>2023-06-09 16:45:14 +0200
commitae3642ce42e23bc454ee81e6383100b696670b37 (patch)
tree6517c1bebf3f28e174f25205dcf781399cffd5cd /libtests
parent5906dd5c1f050af5d6eb2b9e9e5a0099e44b3ae6 (diff)
downloadqpdf-ae3642ce42e23bc454ee81e6383100b696670b37.tar.zst
Code tidy - Clang-Tidy rule modernize-use-equals-default
Diffstat (limited to 'libtests')
-rw-r--r--libtests/dct_compress.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/libtests/dct_compress.cc b/libtests/dct_compress.cc
index ab6e3b53..8f7e0913 100644
--- a/libtests/dct_compress.cc
+++ b/libtests/dct_compress.cc
@@ -17,9 +17,7 @@ usage()
class Callback: public Pl_DCT::CompressConfig
{
public:
- Callback()
- {
- }
+ Callback() = default;
~Callback() override = default;
void apply(jpeg_compress_struct*) override;
bool called{false};