Changeset 80754 in vbox
- Timestamp:
- Sep 12, 2019 11:16:01 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r80753 r80754 1152 1152 AssertCompile((uint64_t)VBOX_VERSION_MINOR < 256); 1153 1153 uint64_t uRevision = ((uint64_t)VBOX_VERSION_MAJOR << 56) 1154 | ((uint64_t)VBOX_VERSION_MINOR << 48); 1155 1156 if (VBOX_VERSION_BUILD >= 81 && (VBOX_VERSION_BUILD & 1)) /* pre-release trunk */ 1157 uRevision |= (uint64_t)VBOX_VERSION_BUILD << 40; 1154 | ((uint64_t)VBOX_VERSION_MINOR << 48) 1155 | ((uint64_t)VBOX_VERSION_BUILD << 40); 1158 1156 1159 1157 /** @todo This needs to be the same in OSE and non-OSE, preferrably
Note:
See TracChangeset
for help on using the changeset viewer.