[Lldb-commits] [lldb] r209756 - Disabled warning C4251 on MSVC builds.

Todd Fiala todd.fiala at gmail.com
Wed May 28 10:58:29 PDT 2014


Author: tfiala
Date: Wed May 28 12:58:29 2014
New Revision: 209756

URL: http://llvm.org/viewvc/llvm-project?rev=209756&view=rev
Log:
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.

Modified:
    lldb/trunk/CMakeLists.txt

Modified: lldb/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/CMakeLists.txt?rev=209756&r1=209755&r2=209756&view=diff
==============================================================================
--- lldb/trunk/CMakeLists.txt (original)
+++ lldb/trunk/CMakeLists.txt Wed May 28 12:58:29 2014
@@ -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.'
   )





More information about the lldb-commits mailing list