Skip to content

Commit

Permalink
[infra] Remove no-reorder from strict build (#14463)
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 authored Dec 17, 2024
1 parent 73e57ed commit 10dcfe7
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 10dcfe7

Please sign in to comment.