Skip to content

Commit

Permalink
clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
irwiss committed Aug 18, 2022
1 parent 1c7b6b9 commit 4c35efd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/activity_actor_definitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -1485,7 +1485,7 @@ class vehicle_folding_activity_actor : public activity_actor
bool fold_vehicle( Character &p, bool check_only ) const;

// private empty constructor for deserialization
vehicle_folding_activity_actor() {}
explicit vehicle_folding_activity_actor() = default;
public:
vehicle_folding_activity_actor( const vehicle &target );

Expand Down Expand Up @@ -1518,7 +1518,7 @@ class vehicle_unfolding_activity_actor : public activity_actor
bool unfold_vehicle( Character &p, bool check_only ) const;

// private empty constructor for deserialization
vehicle_unfolding_activity_actor() {}
explicit vehicle_unfolding_activity_actor() = default;
public:
vehicle_unfolding_activity_actor( const item &it );

Expand Down

0 comments on commit 4c35efd

Please sign in to comment.