Changeset 58277 in vbox for trunk/src/VBox/HostDrivers/VBoxUSB
- Timestamp:
- Oct 15, 2015 9:36:59 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103468
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/darwin/VBoxUSB.cpp
r58276 r58277 113 113 virtual void free(); 114 114 /** @} */ 115 116 private: 117 /** Guard against the parent class growing and us using outdated headers. */ 118 uint8_t m_abSafetyPadding[256]; 115 119 }; 116 120 OSDefineMetaClassAndStructors(org_virtualbox_VBoxUSB, IOService); … … 149 153 150 154 private: 155 /** Guard against the parent class growing and us using outdated headers. */ 156 uint8_t m_abSafetyPadding[256]; 151 157 /** The service provider. */ 152 158 org_virtualbox_VBoxUSB *m_pProvider; … … 201 207 private: 202 208 /** Padding to guard against parent class expanding (see class remarks). */ 203 uint8_t m_ab Padding[256];209 uint8_t m_abSafetyPadding[256]; 204 210 /** The interface we're driving (aka. the provider). */ 205 211 IOUSBDevice *m_pDevice; … … 263 269 264 270 private: 271 /** Padding to guard against parent class expanding (see class remarks). */ 272 uint8_t m_abSafetyPadding[256]; 265 273 /** The interface we're driving (aka. the provider). */ 266 274 IOUSBInterface *m_pInterface;
Note:
See TracChangeset
for help on using the changeset viewer.