Changeset 83795 in vbox for trunk/include/iprt/cpp
- Timestamp:
- Apr 18, 2020 1:30:56 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/exception.h
r83763 r83795 32 32 #include <iprt/cpp/ministring.h> 33 33 #include <exception> 34 #if !defined(DOXYGEN_RUNNING) && RT_MSC_PREREQ(RT_MSC_VER_VC141) 35 # pragma warning(push) 36 # pragma warning(disable:4275) /* non dll-interface class 'std::exception' used as base for dll-interface class 'RTCError' */ 34 35 #ifndef DOXYGEN_RUNNING 36 # if RT_MSC_PREREQ(RT_MSC_VER_VC141) 37 # pragma warning(push) 38 # pragma warning(disable:4275) /* non dll-interface class 'std::exception' used as base for dll-interface class 'RTCError' */ 39 # endif 37 40 #endif 38 41 … … 101 104 /** @} */ 102 105 103 #if RT_MSC_PREREQ(RT_MSC_VER_VC141) 104 # pragma warning(pop) 106 #ifndef DOXYGEN_RUNNING 107 # if RT_MSC_PREREQ(RT_MSC_VER_VC141) 108 # pragma warning(pop) 109 # endif 105 110 #endif 106 111 #endif /* !IPRT_INCLUDED_cpp_exception_h */
Note:
See TracChangeset
for help on using the changeset viewer.