Просмотр исходного кода

common: Add -fsized-deallocation as a Clang flag

Prevents an operator delete error when compiling with Clang 11.
lat9nq 5 лет назад
Родитель
Сommit
a58086ae0d
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      src/common/CMakeLists.txt

+ 2 - 0
src/common/CMakeLists.txt

@@ -206,6 +206,8 @@ if (MSVC)
 else()
   target_compile_options(common PRIVATE
     -Werror
+
+    $<$<CXX_COMPILER_ID:Clang>:-fsized-deallocation>
   )
 endif()