Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[FIX] Member might not be default initializable
  • Loading branch information
eseiler committed Sep 28, 2023
commit 1baf50fe6a71ba372ff8394d4b847b5cbc074d0d
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class on_result : private seqan3::pipeable_config_element
{
public:
//!\brief The stored callable which will be invoked with the alignment result.
seqan3::detail::copyable_wrapper_t<callback_t> callback{}; // Allows lambdas with capture blocks.
seqan3::detail::copyable_wrapper_t<callback_t> callback; // Allows lambdas with capture blocks.

/*!\name Constructors, destructor and assignment
* \{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ class trace_matrix_full<trace_t>::iterator::column_proxy : public std::ranges::v
{
private:
//!\brief The represented column.
matrix_column_type column{};
matrix_column_type column;

public:
/*!\name Constructor, assignment and destructor
Expand Down
2 changes: 1 addition & 1 deletion include/seqan3/search/configuration/on_result.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class on_result : private seqan3::pipeable_config_element
{
public:
//!\brief The stored callable which will be invoked with the search result.
seqan3::detail::copyable_wrapper_t<callback_t> callback{}; // Allows lambdas with capture blocks.
seqan3::detail::copyable_wrapper_t<callback_t> callback; // Allows lambdas with capture blocks.

/*!\name Constructors, destructor and assignment
* \{
Expand Down
2 changes: 1 addition & 1 deletion include/seqan3/utility/views/pairwise_combine.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class pairwise_combine_view : public std::ranges::view_interface<pairwise_combin

private:
//!\brief The underling range.
underlying_range_type u_range{};
underlying_range_type u_range;
//!\brief The cached iterator pointing to the last element of the underlying range.
std::ranges::iterator_t<underlying_range_type> back_iterator{};
};
Expand Down