Changeset 85182 in vbox
- Timestamp:
- Jul 10, 2020 1:20:54 PM (4 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
-
pdmpcidev.h (modified) (2 diffs)
-
pdmpcidevint.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmpcidev.h
r85121 r85182 60 60 /** Pointer to a FNPCICONFIGREAD() function. */ 61 61 typedef FNPCICONFIGREAD *PFNPCICONFIGREAD; 62 #if !RT_CLANG_PREREQ(11, 0) /* Clang 11 (at least) has trouble with nothrow and pointers to function pointers. */ 62 63 /** Pointer to a PFNPCICONFIGREAD. */ 63 64 typedef PFNPCICONFIGREAD *PPFNPCICONFIGREAD; 65 #endif 64 66 65 67 /** … … 85 87 /** Pointer to a FNPCICONFIGWRITE() function. */ 86 88 typedef FNPCICONFIGWRITE *PFNPCICONFIGWRITE; 89 #if !RT_CLANG_PREREQ(11, 0) /* Clang 11 (at least) has trouble with nothrow and pointers to function pointers. */ 87 90 /** Pointer to a PFNPCICONFIGWRITE. */ 88 91 typedef PFNPCICONFIGWRITE *PPFNPCICONFIGWRITE; 92 #endif 89 93 90 94 /** -
trunk/include/VBox/vmm/pdmpcidevint.h
r85121 r85182 87 87 /** Pointer to a FNPCICONFIGREAD() function. */ 88 88 typedef FNPCIBRIDGECONFIGREAD *PFNPCIBRIDGECONFIGREAD; 89 #if !RT_CLANG_PREREQ(11, 0) /* Clang 11 (at least) has trouble with nothrow and pointers to function pointers. */ 89 90 /** Pointer to a PFNPCICONFIGREAD. */ 90 91 typedef PFNPCIBRIDGECONFIGREAD *PPFNPCIBRIDGECONFIGREAD; 92 #endif 91 93 92 94 /** … … 106 108 /** Pointer to a FNPCICONFIGWRITE() function. */ 107 109 typedef FNPCIBRIDGECONFIGWRITE *PFNPCIBRIDGECONFIGWRITE; 110 #if !RT_CLANG_PREREQ(11, 0) /* Clang 11 (at least) has trouble with nothrow and pointers to function pointers. */ 108 111 /** Pointer to a PFNPCICONFIGWRITE. */ 109 112 typedef PFNPCIBRIDGECONFIGWRITE *PPFNPCIBRIDGECONFIGWRITE; 113 #endif 110 114 111 115 /* Forward declaration */
Note:
See TracChangeset
for help on using the changeset viewer.

