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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user