Skip to content

Commit

Permalink
Remove invalid flag
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Nov 13, 2024
1 parent a77b256 commit 0add931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ function(enable_static_checkers target)
# compile flags. To do this completely cleanly we should modify the flags on the target rather
# than the global CUDF_CXX_FLAGS, but this solution is good enough for now since we never run
# the linters on real builds.
foreach(_flag -Wno-missing-braces -Wno-absolute-value -Wno-unneeded-internal-declaration)
foreach(_flag -Wno-missing-braces -Wno-unneeded-internal-declaration)
list(FIND CUDF_CXX_FLAGS "${_flag}" _flag_index)
if(_flag_index EQUAL -1)
list(APPEND CUDF_CXX_FLAGS ${_flag})
Expand Down

0 comments on commit 0add931

Please sign in to comment.