Changeset 86023 in vbox for trunk/src/VBox/Additions/3D
- Timestamp:
- Sep 3, 2020 2:17:25 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/3D/mesa/mesa-17.3.9/src/gallium/drivers/svga/include/svga_types.h
r86010 r86023 33 33 /* Include only what is required. */ 34 34 #include <iprt/types.h> 35 #define inline _inline 35 36 /* 'inline' keyword in C code for MSC older than VS2015. */ 37 #if !defined(__cplusplus) 38 # if defined(_MSC_VER) && !RT_MSC_PREREQ(RT_MSC_VER_VS2015) 39 # define inline _inline 40 # endif 41 #endif 42 36 43 /* Compute the size of an array */ 37 44 #ifndef ARRAY_SIZE
Note:
See TracChangeset
for help on using the changeset viewer.