blob: 8cee14889fd45238739203a67121381a350e045d [file] [log] [blame]
Patrick Williams864cc432023-02-09 14:54:44 -06001From 5d8218b8a1b5bc71e2a0cf543a000e194daba599 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sun, 29 Jan 2023 17:15:30 -0800
4Subject: [PATCH] free_mon: Include missing <cstdint>
5
6gcc 13 moved some includes around and as a result <cstdint> is no
7longer transitively included [1]. Explicitly include it
8for uintXX_t.
9
10[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
11
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
Andrew Geissler220dafd2023-10-04 10:18:08 -050013
14Upstream-Status: Pending
Patrick Williams864cc432023-02-09 14:54:44 -060015---
16 src/mongo/db/free_mon/free_mon_options.h | 1 +
17 1 file changed, 1 insertion(+)
18
19--- a/src/mongo/db/free_mon/free_mon_options.h
20+++ b/src/mongo/db/free_mon/free_mon_options.h
21@@ -29,6 +29,7 @@
22
23 #pragma once
24
25+#include <cstdint>
26 #include <string>
27 #include <vector>
28