1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

Fix the build for GCC

This commit is contained in:
Ted John
2019-10-27 17:19:35 +00:00
parent b3969cf1fe
commit a3351efd49
3 changed files with 15 additions and 4 deletions

View File

@@ -866,7 +866,10 @@ int32_t scenario_save(const utf8* path, int32_t flags)
class ParkFileImporter : public IParkImporter
{
private:
[[maybe_unused]] const IObjectRepository& _objectRepository;
#ifdef __clang__
[[maybe_unused]]
#endif
const IObjectRepository& _objectRepository;
std::unique_ptr<OpenRCT2::ParkFile> _parkFile;
public: