From 8cb500768846b8e2307a0a37131b031608c2c3d0 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 29 Jun 2021 11:57:21 +0300 Subject: [PATCH] Suppress MSVC warning C5243: 'type-name': using incomplete class 'class-name' can cause potential one definition rule violation due to ABI limitation. --- common.pri | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common.pri b/common.pri index 88e7738b8..e1b2e51d2 100644 --- a/common.pri +++ b/common.pri @@ -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 '' to '', possible loss of data + -wd5219 \ # implicit conversion from '' to '', possible loss of data + -wd5243 # 'type-name': using incomplete class 'class-name' can cause potential one definition rule violation due + # to ABI limitation }