Skip to content

Commit

Permalink
[MISC] automatic linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed Nov 14, 2023
1 parent fe389fe commit 6d36b52
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions include/seqan3/utility/tuple/pod_tuple.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ struct pod_tuple<type0, types...>
constexpr ~pod_tuple() noexcept = default; //!< Defaulted.

//!\brief Construct from arguments.
constexpr pod_tuple(type0 v0, types... args) noexcept :
_head{v0},
_tail{args...}
constexpr pod_tuple(type0 v0, types... args) noexcept : _head{v0}, _tail{args...}
{}
//!\endcond

Expand Down

0 comments on commit 6d36b52

Please sign in to comment.