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
76 (similar to what MSVC emits when given the ``/Z7`` flag) and DWARF debug
104 * Thread-safe initialization of local statics: :good:`Complete`. MSVC 2015
107 We are ABI compatible with both the MSVC 2013 and 2015 ABI for static local
118 MSVC allows many invalid constructs in class templates that Clang has
123 The first major semantic difference is that MSVC appears to defer all parsing
128 substitution, which is not what MSVC does. The following compatibility tweaks
131 MSVC allows some name lookup into dependent base classes. Even on other