Suppress MSVC warning C5243: 'type-name': using incomplete class 'class-name' can cause potential one definition rule violation due to ABI limitation.

develop
Roman Telezhynskyi 2021-06-29 11:57:21 +03:00
parent c867a9a56e
commit 8cb5007688
1 changed files with 3 additions and 1 deletions

View File

@ -923,5 +923,7 @@ MSVC_DEBUG_CXXFLAGS += \
-wd4774 \ # format string expected in argument 3 is not a string literal
-wd5204 \ # class has virtual functions, but its trivial destructor is not virtual; instances of objects derived
# from this class may not be destructed correctly
-wd5219 # implicit conversion from '<type>' to '<type>', possible loss of data
-wd5219 \ # implicit conversion from '<type>' to '<type>', possible loss of data
-wd5243 # 'type-name': using incomplete class 'class-name' can cause potential one definition rule violation due
# to ABI limitation
}