Skip to content

Commit

Permalink
Inline Kmer Extractor private functions
Browse files Browse the repository at this point in the history
  • Loading branch information
lczech committed Aug 27, 2024
1 parent cdf1e30 commit babad5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/genesis/sequence/kmer/extractor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class KmerExtractor
// Increment and Processing Samples
// ---------------------------------------------

void increment_()
inline void increment_()
{
assert( parent_ );

Expand All @@ -202,7 +202,7 @@ class KmerExtractor
}
}

void init_kmer_from_current_location_()
inline void init_kmer_from_current_location_()
{
assert( parent_ );

Expand Down Expand Up @@ -248,7 +248,7 @@ class KmerExtractor
kmer_.location = start_location;
}

bool process_current_char_()
inline bool process_current_char_()
{
// Shorthands and checks.
auto const k = Kmer<Tag>::k();
Expand Down

0 comments on commit babad5e

Please sign in to comment.