From b410d2e6c9a1bec24811d6247a82f736d634d7ee Mon Sep 17 00:00:00 2001 From: Vasiliy Glazov Date: Fri, 13 Mar 2020 15:02:28 +0300 Subject: [PATCH] Fix build with GCC 10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I am try to build generator_tool with GCC 10 (coming soon with Fedora 32) and has error: ``` In file included from /home/vascom/mapsme/omim/coding/move_to_front.cpp:1: /home/vascom/mapsme/omim/coding/move_to_front.hpp:12:10: ошибка: «size_t» не является именем типа 12 | static size_t constexpr kNumBytes = static_cast(std::numeric_limits::max()) + 1; | ^~~~~~ /home/vascom/mapsme/omim/coding/move_to_front.hpp:6:1: замечание: «size_t» is defined in header «»; did you forget to «#include »? 5 | #include +++ |+#include 6 | ``` With this fix generator_tool built successfully. --- coding/move_to_front.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/coding/move_to_front.hpp b/coding/move_to_front.hpp index dc81cb4a5d..a22aabb31b 100644 --- a/coding/move_to_front.hpp +++ b/coding/move_to_front.hpp @@ -3,6 +3,7 @@ #include #include #include +#include namespace coding {