Ignore conversion warnings for now

This commit is contained in:
momo5502
2025-01-05 20:35:10 +01:00
parent 17860edc4c
commit c5238e110b

View File

@@ -209,7 +209,9 @@ function(momo_target_set_warnings_as_errors target)
return()
endif()
set(compile_options -Wall -Wextra -Wconversion -pedantic -Werror -Wno-comment)
set(compile_options -Wall -Wextra
#-Wconversion
-pedantic -Werror -Wno-comment)
if(MSVC)
set(compile_options /W4 /WX)