VirtualBox

Changeset 81674 in vbox for trunk/src/VBox/Main/src-client


Ignore:
Timestamp:
Nov 5, 2019 2:44:22 PM (5 years ago)
Author:
vboxsync
Message:

Main: Fixes for deprecated implicit copy operators (GCC 9).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/AudioDriver.cpp

    r76553 r81674  
    3838}
    3939
     40
    4041AudioDriver::~AudioDriver(void)
    4142{
     43}
     44
     45
     46AudioDriver &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;
    4253}
    4354
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette