Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for building with > gcc-5 #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/SW.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ int findAGSBackwardExtensionCarefully(QueryState_t * QS, ROFF rOff, char * qStr
////////////////////////

template <BOOL banded, BOOL extension, BOOL reverse, BOOL XCutoff>
int findAffineGapScore(QueryState_t * QS, char * qStr, SUINT qLen, char * rStr, SUINT rLen, EditOpList_t * list, SUINT * addedQLen = NULL, SUINT * addedRLen = NULL)
int findAffineGapScore(QueryState_t * QS, char * qStr, SUINT qLen, char * rStr, SUINT rLen, EditOpList_t * list, SUINT * addedQLen, SUINT * addedRLen)
{
// As we will go row by row, then column by column, we do not need to store all of the V, E, and F arrays.
// Instead we will store only the previous row and column for each.
Expand Down