Changeset 81674 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Nov 5, 2019 2:44:22 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/AudioDriver.cpp
r76553 r81674 38 38 } 39 39 40 40 41 AudioDriver::~AudioDriver(void) 41 42 { 43 } 44 45 46 AudioDriver &AudioDriver::operator=(AudioDriver const &a_rThat) RT_NOEXCEPT 47 { 48 mpConsole = a_rThat.mpConsole; 49 mCfg = a_rThat.mCfg; 50 mfAttached = a_rThat.mfAttached; 51 52 return *this; 42 53 } 43 54
Note:
See TracChangeset
for help on using the changeset viewer.