common: Add -fsized-deallocation as a Clang flag

Prevents an operator delete error when compiling with Clang 11.
This commit is contained in:
lat9nq 2021-02-09 21:28:33 -05:00
parent 70db238f80
commit a58086ae0d

View File

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