Browse Source

common: Add -fsized-deallocation as a Clang flag

Prevents an operator delete error when compiling with Clang 11.
pull/15/merge
lat9nq 5 years ago
parent
commit
a58086ae0d
  1. 2
      src/common/CMakeLists.txt

2
src/common/CMakeLists.txt

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

Loading…
Cancel
Save