Browse Source
Merge pull request #9418 from liamwhite/implicitly-deleted
audio_core: remove explicitly defaulted and implicitly deleted constructors
pull/15/merge
Mai
3 years ago
committed by
GitHub
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/detail_aspect.h
-
src/audio_core/renderer/performance/entry_aspect.h
|
|
|
@ -16,7 +16,6 @@ class CommandGenerator; |
|
|
|
*/ |
|
|
|
class DetailAspect { |
|
|
|
public: |
|
|
|
DetailAspect() = default; |
|
|
|
DetailAspect(CommandGenerator& command_generator, PerformanceEntryType entry_type, s32 node_id, |
|
|
|
PerformanceDetailType detail_type); |
|
|
|
|
|
|
|
|
|
|
|
@ -16,7 +16,6 @@ class CommandGenerator; |
|
|
|
*/ |
|
|
|
class EntryAspect { |
|
|
|
public: |
|
|
|
EntryAspect() = default; |
|
|
|
EntryAspect(CommandGenerator& command_generator, PerformanceEntryType type, s32 node_id); |
|
|
|
|
|
|
|
/// Command generator the command will be generated into |
|
|
|
|