We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2eb3dd commit 9737015Copy full SHA for 9737015
cmake/options.cmake
@@ -188,6 +188,10 @@ endif()
188
# Fix Clang complaining about the sized delete operator.
189
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "IntelLLVM")
190
target_compile_options(${SVS_LIB} INTERFACE -fsized-deallocation)
191
+ # TODO: remove once eve releases with clang-20 support
192
+ if (CMAKE_CXX_COMPILER_VERSION GREATER_EQUAL 20.0)
193
+ target_compile_options(svs_compile_options INTERFACE -Wno-deprecated-literal-operator)
194
+ endif()
195
endif()
196
197
# Provide better diagnostics for broken templates.
0 commit comments