Skip to content

Commit

Permalink
clang-tidy: remove dedundant initializer
Browse files Browse the repository at this point in the history
Found with readability-redundant-member-init

Signed-off-by: Rosen Penev <[email protected]>
  • Loading branch information
neheb authored and hassec committed Jun 27, 2021
1 parent a4c5bda commit 2fbf2e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ namespace Action {
private:
virtual Modify* clone_() const;
//! Copy constructor needed because of UniquePtr member
Modify(const Modify& /*src*/) : Task() {}
Modify(const Modify& /*src*/) = default;

//! Add a metadatum to \em pImage according to \em modifyCmd
static int addMetadatum(Exiv2::Image* pImage,
Expand Down

0 comments on commit 2fbf2e6

Please sign in to comment.