summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Mai2022-12-10 19:04:57 +0000
committerGravatar GitHub2022-12-10 19:04:57 +0000
commit6982423931c695e1f14b14909a9b51899eed8c20 (patch)
tree7952a0c301d9bcf0cc30c94e52aa5581f9d730b1
parentMerge pull request #9412 from Saalvage/fix/trace-log-compilation (diff)
parentaudio_core: remove explicitly defaulted and implicitly deleted constructors (diff)
downloadyuzu-6982423931c695e1f14b14909a9b51899eed8c20.tar.gz
yuzu-6982423931c695e1f14b14909a9b51899eed8c20.tar.xz
yuzu-6982423931c695e1f14b14909a9b51899eed8c20.zip
Merge pull request #9418 from liamwhite/implicitly-deleted
audio_core: remove explicitly defaulted and implicitly deleted constructors
Diffstat (limited to '')
-rw-r--r--src/audio_core/renderer/performance/detail_aspect.h1
-rw-r--r--src/audio_core/renderer/performance/entry_aspect.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/audio_core/renderer/performance/detail_aspect.h b/src/audio_core/renderer/performance/detail_aspect.h
index ee4ac2f76..736c331b9 100644
--- a/src/audio_core/renderer/performance/detail_aspect.h
+++ b/src/audio_core/renderer/performance/detail_aspect.h
@@ -16,7 +16,6 @@ class CommandGenerator;
16 */ 16 */
17class DetailAspect { 17class DetailAspect {
18public: 18public:
19 DetailAspect() = default;
20 DetailAspect(CommandGenerator& command_generator, PerformanceEntryType entry_type, s32 node_id, 19 DetailAspect(CommandGenerator& command_generator, PerformanceEntryType entry_type, s32 node_id,
21 PerformanceDetailType detail_type); 20 PerformanceDetailType detail_type);
22 21
diff --git a/src/audio_core/renderer/performance/entry_aspect.h b/src/audio_core/renderer/performance/entry_aspect.h
index 01c1eb3f1..14c9e3baf 100644
--- a/src/audio_core/renderer/performance/entry_aspect.h
+++ b/src/audio_core/renderer/performance/entry_aspect.h
@@ -16,7 +16,6 @@ class CommandGenerator;
16 */ 16 */
17class EntryAspect { 17class EntryAspect {
18public: 18public:
19 EntryAspect() = default;
20 EntryAspect(CommandGenerator& command_generator, PerformanceEntryType type, s32 node_id); 19 EntryAspect(CommandGenerator& command_generator, PerformanceEntryType type, s32 node_id);
21 20
22 /// Command generator the command will be generated into 21 /// Command generator the command will be generated into