Changeset 60078 in vbox for trunk/include/VBox
- Timestamp:
- Mar 17, 2016 2:09:37 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/array.h
r60077 r60078 167 167 #endif 168 168 169 /* Type traits are a C++ 11 feature, so not available everywhere (yet). 170 * Only GCC 4.6 or newer and MSVC++ 16.0 (Visual Studio 2010) or newer. */ 169 #include "VBox/com/defs.h" 170 171 /** @def VBOX_WITH_TYPE_TRAITS 172 * Type traits are a C++ 11 feature, so not available everywhere (yet). 173 * Only GCC 4.6 or newer and MSVC++ 16.0 (Visual Studio 2010) or newer. 174 */ 171 175 #if RT_GNUC_PREREQ(4, 6) || (defined(_MSC_VER) && (_MSC_VER >= 1600)) 172 176 # define VBOX_WITH_TYPE_TRAITS … … 177 181 #endif 178 182 179 #include "VBox/com/defs.h"180 183 #include "VBox/com/ptr.h" 181 184 #include "VBox/com/assert.h"
Note:
See TracChangeset
for help on using the changeset viewer.