Changeset 62740 in vbox for trunk/src/VBox
- Timestamp:
- Jul 30, 2016 12:29:40 PM (8 years ago)
- Location:
- trunk/src/VBox/Storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VDI.cpp
r62153 r62740 373 373 374 374 /* Init uuids. */ 375 #ifdef _MSC_VER 376 # pragma warning(disable:4366) /* (harmless "misalignment") */ 377 #endif 375 378 RTUuidCreate(&pHeader->u.v1plus.uuidCreate); 376 379 RTUuidClear(&pHeader->u.v1plus.uuidModify); 377 380 RTUuidClear(&pHeader->u.v1plus.uuidLinkage); 378 381 RTUuidClear(&pHeader->u.v1plus.uuidParentModify); 382 #ifdef _MSC_VER 383 # pragma warning(default:4366) 384 #endif 379 385 380 386 /* Mark LCHS geometry not-calculated. */ -
trunk/src/VBox/Storage/VDICore.h
r62482 r62740 468 468 } 469 469 470 #ifdef _MSC_VER 471 # pragma warning(disable:4366) /* (harmless "misalignment") */ 472 #endif 473 470 474 DECLINLINE(PRTUUID) getImageCreationUUID(PVDIHEADER ph) 471 475 { … … 510 514 return NULL; 511 515 } 516 517 #ifdef _MSC_VER 518 # pragma warning(default:4366) 519 #endif 512 520 513 521 /**
Note:
See TracChangeset
for help on using the changeset viewer.