aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Rusak <lorusak@gmail.com>2022-01-31 19:51:27 -0800
committerfuzzard <fuzzard@kodi.tv>2022-02-01 14:09:28 +1000
commitad207ef71223a40f41176faa987a352456d60ffc (patch)
treeac3c731fe709de0dcf4a6332b94b146cd98f2ce4
parentc5fb2ecefbcc552908106056f286a8e77ad1e513 (diff)
CAEChannelInfo: add default copy constructor
-rw-r--r--xbmc/cores/AudioEngine/Utils/AEChannelInfo.h1
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);