1
0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2025-05-06 14:10:08 +00:00

Merge pull request from liamwhite/implicitly-deleted

audio_core: remove explicitly defaulted and implicitly deleted constructors
This commit is contained in:
Mai 2022-12-10 19:04:57 +00:00 committed by GitHub
commit 6982423931
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions
src/audio_core/renderer/performance

@ -16,7 +16,6 @@ class CommandGenerator;
*/ */
class DetailAspect { class DetailAspect {
public: public:
DetailAspect() = default;
DetailAspect(CommandGenerator& command_generator, PerformanceEntryType entry_type, s32 node_id, DetailAspect(CommandGenerator& command_generator, PerformanceEntryType entry_type, s32 node_id,
PerformanceDetailType detail_type); PerformanceDetailType detail_type);

@ -16,7 +16,6 @@ class CommandGenerator;
*/ */
class EntryAspect { class EntryAspect {
public: public:
EntryAspect() = default;
EntryAspect(CommandGenerator& command_generator, PerformanceEntryType type, s32 node_id); EntryAspect(CommandGenerator& command_generator, PerformanceEntryType type, s32 node_id);
/// Command generator the command will be generated into /// Command generator the command will be generated into