Merge pull request #26635 from FantasqueX:remove-no-long-long-1

Remove useless -Wno-long-long option
This commit is contained in:
Alexander Smorkalov 2024-12-27 10:01:53 +03:00 committed by GitHub
commit 94bccbecc0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -191,11 +191,6 @@ if(CV_GCC OR CV_CLANG OR CV_ICX)
endif()
add_extra_compiler_option(-fdiagnostics-show-option)
# The -Wno-long-long is required in 64bit systems when including system headers.
if(X86_64)
add_extra_compiler_option(-Wno-long-long)
endif()
# We need pthread's, unless we have explicitly disabled multi-thread execution.
if(NOT OPENCV_DISABLE_THREAD_SUPPORT
AND (