1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 01:35:06 +01:00

Mark unused arguments in the libopenrct2 project

For dummy classes and functions with empty bodies I've only commented out the arguments, for all others I used C++17's [[maybe_unused]].
This commit is contained in:
Hielke Morsink
2018-05-31 23:22:46 +02:00
committed by Michał Janiszewski
parent 27b684e785
commit 204dd4439b
23 changed files with 175 additions and 106 deletions

View File

@@ -29,7 +29,7 @@ namespace OpenRCT2::Audio
return 0;
}
size_t Read(void * dst, uint64 offset, size_t len) override
size_t Read([[maybe_unused]] void* dst, [[maybe_unused]] uint64 offset, [[maybe_unused]] size_t len) override
{
return 0;
}