diff options
author | Lukas Rusak <lorusak@gmail.com> | 2022-01-31 19:51:27 -0800 |
---|---|---|
committer | fuzzard <fuzzard@kodi.tv> | 2022-02-01 14:09:28 +1000 |
commit | ad207ef71223a40f41176faa987a352456d60ffc (patch) | |
tree | ac3c731fe709de0dcf4a6332b94b146cd98f2ce4 | |
parent | c5fb2ecefbcc552908106056f286a8e77ad1e513 (diff) |
CAEChannelInfo: add default copy constructor
-rw-r--r-- | xbmc/cores/AudioEngine/Utils/AEChannelInfo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xbmc/cores/AudioEngine/Utils/AEChannelInfo.h b/xbmc/cores/AudioEngine/Utils/AEChannelInfo.h index 4fd0fb9e57..1b59e5f11e 100644 --- a/xbmc/cores/AudioEngine/Utils/AEChannelInfo.h +++ b/xbmc/cores/AudioEngine/Utils/AEChannelInfo.h @@ -24,6 +24,7 @@ public: explicit CAEChannelInfo(const enum AEChannel* rhs); CAEChannelInfo(const enum AEStdChLayout rhs); ~CAEChannelInfo() = default; + CAEChannelInfo(const CAEChannelInfo&) = default; CAEChannelInfo& operator=(const CAEChannelInfo& rhs); CAEChannelInfo& operator=(const enum AEChannel* rhs); CAEChannelInfo& operator=(const enum AEStdChLayout rhs); |