From f6f875133245368ffb985a9cf2fe00130d755cb4 Mon Sep 17 00:00:00 2001 From: Max Kellermann <max.kellermann@gmail.com> Date: Mon, 2 Jan 2023 14:27:44 +0100 Subject: [PATCH] io/FileReader: add missing include for uint64_t --- src/io/FileReader.hxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/io/FileReader.hxx b/src/io/FileReader.hxx index 6f1a34923..935c79f6f 100644 --- a/src/io/FileReader.hxx +++ b/src/io/FileReader.hxx @@ -42,6 +42,8 @@ #include "io/UniqueFileDescriptor.hxx" #endif +#include <cstdint> + class Path; class FileInfo;