Skip to content

Commit

Permalink
fix subobject-linkage warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hmusta authored and adamant-pwn committed May 27, 2024
1 parent 07424de commit 5cd0d65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/kmer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ struct alpha_kmer_t : uint_kmer_t<Kmer, BitsPerChar> {
};

#ifdef SSHASH_USE_TRADITIONAL_NUCLEOTIDE_ENCODING
constexpr char nucleotides[] = "ACGT";
inline constexpr char nucleotides[] = "ACGT";
#else
constexpr char nucleotides[] = "ACTG";
inline constexpr char nucleotides[] = "ACTG";
#endif

template <typename Kmer>
Expand Down

0 comments on commit 5cd0d65

Please sign in to comment.