From a801df36276a5e2ee399277a57e5b87278514493 Mon Sep 17 00:00:00 2001 From: Benjamin Buchfink Date: Tue, 29 Jun 2021 12:49:54 +0200 Subject: [PATCH] Fixed compiler error. --- src/chaining/chaining.h | 9 +++------ src/test/test_cases.cpp | 4 ++-- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/src/chaining/chaining.h b/src/chaining/chaining.h index ddb551bc..02b9a7d7 100644 --- a/src/chaining/chaining.h +++ b/src/chaining/chaining.h @@ -16,11 +16,10 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . ****/ -#ifndef CHAINING_H_ -#define CHAINING_H_ - +#pragma once #include #include +#include #include "../dp/hsp_traits.h" #include "../stats/hauser_correction.h" @@ -197,6 +196,4 @@ struct Diag_graph vector edges; }; -void smith_waterman(Sequence q, Sequence s, const Diag_graph &diags); - -#endif \ No newline at end of file +void smith_waterman(Sequence q, Sequence s, const Diag_graph &diags); \ No newline at end of file diff --git a/src/test/test_cases.cpp b/src/test/test_cases.cpp index 57c085ac..6037ea29 100644 --- a/src/test/test_cases.cpp +++ b/src/test/test_cases.cpp @@ -66,8 +66,8 @@ const vector ref_hashes = { 0xd20b29b1abecd9c4, 0xae7bc1145b22152f, 0xc43258834622128e, -0x949905acf79ca5a, -0x58c74e056adf9a71, +0xe8d8c539aeee24d1, +0x58c74e056adf9a71 }; } \ No newline at end of file