mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 14:49:22 +00:00
Merge pull request #12050 from iwubcode/custom_asset_compiler_warning_fixes
VideoCommon: fix some compiler warnings for CustomAsset
This commit is contained in:
commit
d1ce2e51ff
1 changed files with 4 additions and 4 deletions
|
@ -20,10 +20,10 @@ public:
|
||||||
CustomAsset(std::shared_ptr<CustomAssetLibrary> library,
|
CustomAsset(std::shared_ptr<CustomAssetLibrary> library,
|
||||||
const CustomAssetLibrary::AssetID& asset_id);
|
const CustomAssetLibrary::AssetID& asset_id);
|
||||||
virtual ~CustomAsset() = default;
|
virtual ~CustomAsset() = default;
|
||||||
CustomAsset(const CustomAsset&) = default;
|
CustomAsset(const CustomAsset&) = delete;
|
||||||
CustomAsset(CustomAsset&&) = default;
|
CustomAsset(CustomAsset&&) = delete;
|
||||||
CustomAsset& operator=(const CustomAsset&) = default;
|
CustomAsset& operator=(const CustomAsset&) = delete;
|
||||||
CustomAsset& operator=(CustomAsset&&) = default;
|
CustomAsset& operator=(CustomAsset&&) = delete;
|
||||||
|
|
||||||
// Loads the asset from the library returning a pass/fail result
|
// Loads the asset from the library returning a pass/fail result
|
||||||
bool Load();
|
bool Load();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue