core: Add -fsized-dealloction as a Clang flag

Prevents a operator delete error when compiling with Clang 11.
merge-requests/60/head
lat9nq 2021-02-09 21:27:12 +07:00
parent 70db238f80
commit 68f718943e
1 changed files with 2 additions and 0 deletions

@ -653,6 +653,8 @@ else()
$<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-parameter> $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-parameter>
$<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-variable> $<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-variable>
$<$<CXX_COMPILER_ID:Clang>:-fsized-deallocation>
-Wno-sign-conversion -Wno-sign-conversion
) )
endif() endif()