summaryrefslogtreecommitdiffstats
path: root/fastos
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2023-01-28 21:09:49 +0100
committerTor Egge <Tor.Egge@online.no>2023-01-28 21:09:49 +0100
commit9bbddec3d5f4243053d61e31dac2c98dafa04691 (patch)
treeeb929df89693f9ebf52976e4de1d05d01b998a20 /fastos
parentdd81671f4a11b081cf7e2b8e9ae0ebd077ea1a77 (diff)
Include cstdint to get declaration of fixed width integer types.
Diffstat (limited to 'fastos')
-rw-r--r--fastos/src/vespa/fastos/file.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/fastos/src/vespa/fastos/file.h b/fastos/src/vespa/fastos/file.h
index 34b28b7cc31..9821cc138c5 100644
--- a/fastos/src/vespa/fastos/file.h
+++ b/fastos/src/vespa/fastos/file.h
@@ -11,6 +11,7 @@
#pragma once
#include "types.h"
+#include <cstdint>
#include <string>
const int FASTOS_FILE_OPEN_READ = (1<<0);