Changeset 107515 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jan 8, 2025 2:22:37 PM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 166577
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageUSB.cpp
r106061 r107515 122 122 public: 123 123 124 Nullable() : mIsNull(true) {} 124 Nullable() 125 : mIsNull(true), mValue(0) {} 125 126 Nullable(const T &aValue, bool aIsNull = false) 126 127 : mIsNull(aIsNull), mValue(aValue) {}
Note:
See TracChangeset
for help on using the changeset viewer.