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

Fix compile error when compiling with clang-10 (#12599)

<cstddef> is required for size_t (used in CircularBuffer.h)
This commit is contained in:
ceeac
2020-08-06 17:24:50 +02:00
committed by GitHub
parent be9dca6945
commit db010cd971

View File

@@ -10,6 +10,7 @@
#pragma once
#include <array>
#include <cstddef>
template<typename _TType, size_t _TMax> class CircularBuffer
{