Merge pull request #6227 from lioncash/meta
program_metadata: Explicitly specify copy/move operators/functions
This commit is contained in:
commit
f4610e77e2
|
@ -44,6 +44,12 @@ public:
|
||||||
ProgramMetadata();
|
ProgramMetadata();
|
||||||
~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
|
/// Gets a default ProgramMetadata configuration, should only be used for homebrew formats where
|
||||||
/// we do not have an NPDM file
|
/// we do not have an NPDM file
|
||||||
static ProgramMetadata GetDefault();
|
static ProgramMetadata GetDefault();
|
||||||
|
|
Loading…
Reference in New Issue