Skip to content

Commit

Permalink
Fixed compiler error.
Browse files Browse the repository at this point in the history
  • Loading branch information
bbuchfink committed Jun 29, 2021
1 parent feae474 commit a801df3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
9 changes: 3 additions & 6 deletions src/chaining/chaining.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
****/

#ifndef CHAINING_H_
#define CHAINING_H_

#pragma once
#include <utility>
#include <list>
#include <stddef.h>
#include "../dp/hsp_traits.h"
#include "../stats/hauser_correction.h"

Expand Down Expand Up @@ -197,6 +196,4 @@ struct Diag_graph
vector<Edge> edges;
};

void smith_waterman(Sequence q, Sequence s, const Diag_graph &diags);

#endif
void smith_waterman(Sequence q, Sequence s, const Diag_graph &diags);
4 changes: 2 additions & 2 deletions src/test/test_cases.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ const vector<uint64_t> ref_hashes = {
0xd20b29b1abecd9c4,
0xae7bc1145b22152f,
0xc43258834622128e,
0x949905acf79ca5a,
0x58c74e056adf9a71,
0xe8d8c539aeee24d1,
0x58c74e056adf9a71
};

}

0 comments on commit a801df3

Please sign in to comment.