Skip to content

Commit 3943b96

Browse files
committed
Fix build on Fedora 43: add missing <cstdint> include
string_util.h uses uint64_t in FormatSize() but does not include <cstdint>. This happens to compile on most platforms because other headers transitively include it, but fails on Fedora 43 (GCC 15) where the transitive include was removed. Fixes #856.
1 parent f0d9e37 commit 3943b96

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/include/common/util/string_util.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
#pragma once
1414

15+
#include <cstdint>
1516
#include <string>
1617
#include <vector>
1718

0 commit comments

Comments
 (0)