Browse Source
Merge pull request #6227 from lioncash/meta
program_metadata: Explicitly specify copy/move operators/functions
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
0 deletions
-
src/core/file_sys/program_metadata.h
|
|
|
@ -44,6 +44,12 @@ public: |
|
|
|
ProgramMetadata(); |
|
|
|
~ProgramMetadata(); |
|
|
|
|
|
|
|
ProgramMetadata(const ProgramMetadata&) = default; |
|
|
|
ProgramMetadata& operator=(const ProgramMetadata&) = default; |
|
|
|
|
|
|
|
ProgramMetadata(ProgramMetadata&&) = default; |
|
|
|
ProgramMetadata& operator=(ProgramMetadata&&) = default; |
|
|
|
|
|
|
|
/// Gets a default ProgramMetadata configuration, should only be used for homebrew formats where |
|
|
|
/// we do not have an NPDM file |
|
|
|
static ProgramMetadata GetDefault(); |
|
|
|
|