Skip to content

Commit 141c00a

Browse files
Chessing234claude
andcommitted
fix(string_util): add missing <cstdint> include for uint64_t
Fixes #856. On some platforms (e.g., Fedora 43 with recent GCC), <cstdint> is not transitively included, causing a build failure because uint64_t is not declared in string_util.h. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f0d9e37 commit 141c00a

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)