Skip to content

Commit

Permalink
Replace maybe-uninitialized with uninitialized warning option
Browse files Browse the repository at this point in the history
  • Loading branch information
delasy committed Feb 2, 2025
1 parent e0a1cd0 commit 0c10a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ function (the_target_add_flags target)
target_compile_options(${target} PRIVATE -Wconversion)
target_compile_options(${target} PRIVATE -Werror)
target_compile_options(${target} PRIVATE -Wextra)
target_compile_options(${target} PRIVATE -Wno-maybe-uninitialized)
target_compile_options(${target} PRIVATE -Wno-uninitialized)
target_compile_options(${target} PRIVATE -Wold-style-cast)
target_compile_options(${target} PRIVATE -Wparentheses)
target_compile_options(${target} PRIVATE -Wshadow)
Expand Down

0 comments on commit 0c10a48

Please sign in to comment.