From 9b1281389728359cd6182cc853039e50deab89c5 Mon Sep 17 00:00:00 2001 From: David Ostrovsky Date: Sat, 29 May 2021 21:20:37 +0200 Subject: [PATCH] Fix building on gcc 11 Fixes #12702. Without this include the build is failing with: third_party/ijar/mapped_file_unix.cc: In constructor 'devtools_ijar::MappedOutputFile::MappedOutputFile(const char*, size_t)': third_party/ijar/mapped_file_unix.cc:115:21: error: 'numeric_limits' is not a member of 'std' 115 | std::numeric_limits::max()); | ^~~~~~~~~~~~~~ --- third_party/ijar/mapped_file_unix.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/ijar/mapped_file_unix.cc b/third_party/ijar/mapped_file_unix.cc index 6e3a908718440a..030e9ca59fa496 100644 --- a/third_party/ijar/mapped_file_unix.cc +++ b/third_party/ijar/mapped_file_unix.cc @@ -19,6 +19,7 @@ #include #include +#include #include "third_party/ijar/mapped_file.h"