diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-02-04 15:19:19 -0500 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-02-04 15:19:19 -0500 |
commit | 591fb2ff04a64c7c3d08dee5f0efcb32c7775950 (patch) | |
tree | a3f3d92e054117a54878824301c9a05e9cc68833 /kmer_utils.c | |
parent | 79af85ef9a4983527b6498c858b30525bbe502f1 (diff) |
don't inline hint, breaks clang
Diffstat (limited to 'kmer_utils.c')
-rw-r--r-- | kmer_utils.c | 2 |
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; |