summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-07-25 14:41:57 +0200
committerCarl Hetherington <cth@carlh.net>2023-07-25 14:41:57 +0200
commit085d1f2ee3322bde58ed93166d6dbde5c76f44aa (patch)
tree5324cbcb23c8f1ca6c219dbb92062f68d28aab23 /src
parente04c5e62a638556ce47709212ab36d4a55196e77 (diff)
Cleanup: use = default.
Diffstat (limited to 'src')
-rw-r--r--src/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.h b/src/types.h
index 4a406954..947d7e93 100644
--- a/src/types.h
+++ b/src/types.h
@@ -241,7 +241,7 @@ class EqualityOptions
{
public:
/** Construct an EqualityOptions where nothing at all can differ */
- EqualityOptions () {}
+ EqualityOptions() = default;
/** The maximum allowable mean difference in pixel value between two images */
double max_mean_pixel_error = 0;