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

Add missing include for std::max to fix VS16.4.0P2 compilation (#10282)

* Fix errors where "std::max" was not recognized while compiling with the latest Visual Studio (2019 16.4.0 Preview 2.0) due to a missing "#include" statement.

* Ran clang-format.
This commit is contained in:
tjwrona1992
2019-11-24 02:12:50 -05:00
committed by Michał Janiszewski
parent 831050745c
commit 5f41e9df38

View File

@@ -12,6 +12,8 @@
#include "../common.h"
#include "IStream.hpp"
#include <algorithm>
namespace MEMORY_ACCESS
{
constexpr uint8_t READ = 1 << 0;