diff --git a/include/kmer.hpp b/include/kmer.hpp index 9567ff5..1200dc2 100644 --- a/include/kmer.hpp +++ b/include/kmer.hpp @@ -109,9 +109,9 @@ struct alpha_kmer_t : uint_kmer_t { }; #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