Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #12050 from iwubcode/custom_asset_compiler_warning…
…_fixes

VideoCommon: fix some compiler warnings for CustomAsset
  • Loading branch information
AdmiralCurtiss committed Jul 19, 2023
2 parents 9ebfceb + 79f202e commit d1ce2e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/Core/VideoCommon/Assets/CustomAsset.h
Expand Up @@ -20,10 +20,10 @@ class CustomAsset
CustomAsset(std::shared_ptr<CustomAssetLibrary> library,
const CustomAssetLibrary::AssetID& asset_id);
virtual ~CustomAsset() = default;
CustomAsset(const CustomAsset&) = default;
CustomAsset(CustomAsset&&) = default;
CustomAsset& operator=(const CustomAsset&) = default;
CustomAsset& operator=(CustomAsset&&) = default;
CustomAsset(const CustomAsset&) = delete;
CustomAsset(CustomAsset&&) = delete;
CustomAsset& operator=(const CustomAsset&) = delete;
CustomAsset& operator=(CustomAsset&&) = delete;

// Loads the asset from the library returning a pass/fail result
bool Load();
Expand Down

0 comments on commit d1ce2e5

Please sign in to comment.