From d3f19f4131eed7fda8586914d22272e342ac3438 Mon Sep 17 00:00:00 2001 From: Dmitry Chestnykh Date: Sat, 25 Nov 2023 10:35:26 +0300 Subject: [PATCH] Add missing header. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When I have tried to build yarpgen on ArchLinux the build failed with "/home/dima/work/yarpgen/src/options.h:122:5: error: ‘uint64_t’ does not name a type 122 | uint64_t getSeed() { return seed; } | ^~~~~~~~ /home/dima/work/yarpgen/src/options.h:28:1: note: ‘uint64_t’ is defined in header ‘’;..." --- src/options.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/options.h b/src/options.h index 76635ff..11d7eff 100644 --- a/src/options.h +++ b/src/options.h @@ -19,6 +19,7 @@ limitations under the License. #pragma once #include "enums.h" +#include #include #include #include