Skip to content

Commit

Permalink
fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bbuchfink committed Aug 24, 2016
1 parent bd81781 commit 735b675
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ find_package(ZLIB REQUIRED)
find_package(Threads REQUIRED)

set(CMAKE_BUILD_TYPE Release)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-uninitialized -Wno-deprecated-declarations")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-uninitialized -Wno-deprecated-declarations -Wno-ignored-attributes")

include_directories(
"${CMAKE_SOURCE_DIR}/src"
Expand Down
2 changes: 1 addition & 1 deletion src/dp/greedy_align.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ void scan_vicinity(sequence q, const Long_score_profile &qp, sequence s, const D

void greedy_align(sequence query, const Long_score_profile &qp, sequence subject, const vector<Diagonal_segment> &sh, bool log)
{
static TLS_PTR Tile_map *tile_map_ptr;
// static TLS_PTR Tile_map *tile_map_ptr;
static TLS_PTR vector<Diagonal_segment> *diag_ptr;
vector<Diagonal_segment> &diag(TLS::get(diag_ptr));
diag.clear();
Expand Down

0 comments on commit 735b675

Please sign in to comment.