aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2014-02-04 15:19:19 -0500
committerCalvin Morrison <mutantturkey@gmail.com>2014-02-04 15:19:19 -0500
commit591fb2ff04a64c7c3d08dee5f0efcb32c7775950 (patch)
treea3f3d92e054117a54878824301c9a05e9cc68833
parent79af85ef9a4983527b6498c858b30525bbe502f1 (diff)
don't inline hint, breaks clang
-rw-r--r--kmer_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kmer_utils.c b/kmer_utils.c
index 587404d..060e311 100644
--- a/kmer_utils.c
+++ b/kmer_utils.c
@@ -25,7 +25,7 @@ unsigned long long pow_four(unsigned long long x) {
// convert a string of k-mer size base-4 values into a
// base-10 index
-inline unsigned long num_to_index(const char *str, const int kmer, const long error_pos, long long *current_position) {
+unsigned long num_to_index(const char *str, const int kmer, const long error_pos, long long *current_position) {
int i = 0;
unsigned long out = 0;