Lines Matching refs:MSVC
14 MSVC compatibility
18 MSVC. There are multiple dimensions to compatibility.
21 should be able to link against MSVC-compiled code successfully. However, C++
22 ABIs are particularly large and complicated, and Clang's support for MSVC's C++
23 ABI is a work in progress. If you don't require MSVC ABI compatibility or don't
27 Second, Clang implements many MSVC language extensions, such as
31 Third, MSVC accepts some C++ code that Clang will typically diagnose as
39 be compatible with MSVC's cl.exe.
66 pointers_to_members`_ and the `/vm`_ flags are supported. However, MSVC
101 * Thread-safe initialization of local statics: :good:`Complete`. MSVC 2015
104 We are ABI compatible with both the MSVC 2013 and 2015 ABI for static local
115 MSVC allows many invalid constructs in class templates that Clang has
120 The first major semantic difference is that MSVC appears to defer all parsing
125 substitution, which is not what MSVC does. The following compatibility tweaks
128 MSVC allows some name lookup into dependent base classes. Even on other