1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 12:33:17 +01:00

Remove pseudo-keyword 'abstract'

This commit is contained in:
Aaron van Geffen
2024-07-09 15:17:07 +02:00
parent 7cc1cd09ea
commit db17fc6dad
36 changed files with 366 additions and 363 deletions

View File

@@ -50,8 +50,8 @@
struct IFileDataRetriever
{
virtual ~IFileDataRetriever() = default;
virtual std::vector<uint8_t> GetData(std::string_view path) const abstract;
virtual ObjectAsset GetAsset(std::string_view path) const abstract;
virtual std::vector<uint8_t> GetData(std::string_view path) const = 0;
virtual ObjectAsset GetAsset(std::string_view path) const = 0;
};
class FileSystemDataRetriever : public IFileDataRetriever