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] Mismatched tags (class/struct)
  • Loading branch information
eseiler committed Sep 28, 2023
commit a3304ab75c4da20b3c8fc3c83438eae4d7abe354
2 changes: 1 addition & 1 deletion include/seqan3/search/fm_index/fm_index.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ class fm_index
friend class fm_index_cursor;

template <typename fm_index_t>
friend class detail::fm_index_cursor_node;
friend struct detail::fm_index_cursor_node;

/*!\name Constructors, destructor and assignment
* \{
Expand Down
2 changes: 1 addition & 1 deletion include/seqan3/utility/simd/views/to_simd.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class view_to_simd : public std::ranges::view_interface<view_to_simd<urng_t, sim
//!\}

// Forward declare class' iterator type. See definition below.
struct iterator_type;
class iterator_type;

public:
/*!\name Constructors, destructor and assignment
Expand Down