Skip to content

Commit

Permalink
[infra] Remove no-reorder from strict build
Browse files Browse the repository at this point in the history
This commit removes "-Wno-reorder" flag from strict build.

ONE-DCO-1.0-Signed-off-by: Hyeongseok Oh <[email protected]>
  • Loading branch information
hseok-oh committed Dec 16, 2024
1 parent be08f9e commit d4eeb4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/nncc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ include("cmake/ApplyCompileFlags.cmake")
###
add_library(nncc_common INTERFACE)
if(ENABLE_STRICT_BUILD)
# TODO Remove -Wno-reoder and -Wno-overloaded-virtual
target_compile_options(nncc_common INTERFACE -Werror -Wall -Wextra -Wno-reorder -Wno-overloaded-virtual)
# TODO Remove -Wno-overloaded-virtual
target_compile_options(nncc_common INTERFACE -Werror -Wall -Wextra -Wno-overloaded-virtual)
endif(ENABLE_STRICT_BUILD)

add_library(nncc_coverage INTERFACE)
Expand Down

0 comments on commit d4eeb4a

Please sign in to comment.