From 303934ba499fd61232d95f437ff5492156a4254d Mon Sep 17 00:00:00 2001 From: Todd Fiala Date: Wed, 28 May 2014 17:58:29 +0000 Subject: [PATCH] Disabled warning C4251 on MSVC builds. See http://reviews.llvm.org/D3934 for more details. This is only the CMakeLists.txt portion of that change. Change by Zachary Turner. llvm-svn: 209756 --- lldb/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/CMakeLists.txt b/lldb/CMakeLists.txt index a16af6f..f758362 100644 --- a/lldb/CMakeLists.txt +++ b/lldb/CMakeLists.txt @@ -152,6 +152,7 @@ if( MSVC ) -wd4018 # Suppress 'warning C4018: '>=' : signed/unsigned mismatch' -wd4068 # Suppress 'warning C4068: unknown pragma' -wd4150 # Suppress 'warning C4150: deletion of pointer to incomplete type' + -wd4251 # Suppress 'warning C4251: T must have dll-interface to be used by clients of class U.' -wd4521 # Suppress 'warning C4521: 'type' : multiple copy constructors specified' -wd4530 # Suppress 'warning C4530: C++ exception handler used, but unwind semantics are not enabled.' ) -- 2.7.4