Skip to content

Commit

Permalink
Fixes to issues #106 and #116.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlconlin committed Nov 2, 2020
1 parent 04cfeba commit 54c43fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ option( strict_compile
# Compile flags
set( common_flags "-Wall" "-Wextra" "-Wpedantic" )
set( strict_flags "-Werror" )
set( release_flags "-O3" )
set( release_flags "-O3" "-Wno-unknown-warning-option" )
set( debug_flags "-O0" "-g" )


Expand Down
1 change: 1 addition & 0 deletions src/njoy21.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include "Log.hpp"
#include "utility.hpp"


#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#include "lipservice.hpp"
Expand Down

0 comments on commit 54c43fd

Please sign in to comment.