1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 03:23:15 +01:00

Make constructor default

This commit is contained in:
Ted John
2020-02-22 12:30:49 +00:00
parent 7672847a3d
commit 0e539fffe0

View File

@@ -17,10 +17,7 @@ private:
int8_t _level{};
public:
constexpr ZoomLevel()
: _level()
{
}
constexpr ZoomLevel() = default;
constexpr ZoomLevel(int8_t level)
: _level(level)