Skip to content

Commit

Permalink
change to "-Wno-uninitialized" for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrauch authored and christian-rauch committed Feb 17, 2025
1 parent 3bf1b6a commit 910ae77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/pango_python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ if(BUILD_PANGOLIN_PYTHON AND Python3_FOUND AND pybind11_FOUND)

if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang")
# ignore "maybe-uninitialized" for Eigen
target_compile_options(${COMPONENT} PRIVATE "-Wno-maybe-uninitialized")
target_compile_options(${COMPONENT} PRIVATE "-Wno-uninitialized")
endif()

PangolinRegisterFactory( InterpreterInterface PyInterpreter )
Expand Down

0 comments on commit 910ae77

Please sign in to comment.