blob: 168bd76ac7b60157f543f4ed9c4efca3f78be399 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
From 90eba5458cb4ac2f83cac8aa550927876e6a9a09 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lauren=C8=9Biu=20Nicola?= <lnicola@dend.ro>
Date: Wed, 5 Mar 2025 15:42:46 +0200
Subject: [PATCH] Add missing include (#13365)
* see more details: http://errors.yoctoproject.org/Errors/Details/851177/
In file included from TOPDIR/tmp/work/core2-64-oe-linux/rocksdb/9.10.0/git/db/blob/blob_file_meta.cc:6:
TOPDIR/tmp/work/core2-64-oe-linux/rocksdb/9.10.0/git/db/blob/blob_file_meta.h:28:7: error: 'uint64_t' has not been declared
28 | uint64_t blob_file_number, uint64_t total_blob_count,
| ^~~~~~~~
TOPDIR/tmp/work/core2-64-oe-linux/rocksdb/9.10.0/git/db/blob/blob_file_meta.h:15:1: note: 'uint64_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>'
14 | #include "rocksdb/rocksdb_namespace.h"
+++ |+#include <cstdint>
15 |
TOPDIR/tmp/work/core2-64-oe-linux/rocksdb/9.10.0/git/db/blob/blob_file_meta.h:28:34: error: 'uint64_t' has not been declared
28 | uint64_t blob_file_number, uint64_t total_blob_count,
| ^~~~~~~~
...
* See also: https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
Upstream-Status: Submitted [https://github.com/facebook/rocksdb/pull/13437]
Signed-off-by: mark.yang <mark.yang@lge.com>
---
db/blob/blob_file_meta.h | 1 +
include/rocksdb/trace_record.h | 1 +
include/rocksdb/write_batch_base.h | 1 +
3 files changed, 3 insertions(+)
diff --git a/db/blob/blob_file_meta.h b/db/blob/blob_file_meta.h
index d7c8a1243..2e47726f8 100644
--- a/db/blob/blob_file_meta.h
+++ b/db/blob/blob_file_meta.h
@@ -6,6 +6,7 @@
#pragma once
#include <cassert>
+#include <cstdint>
#include <iosfwd>
#include <memory>
#include <string>
diff --git a/include/rocksdb/trace_record.h b/include/rocksdb/trace_record.h
index 8f9c3ee2f..d321f5387 100644
--- a/include/rocksdb/trace_record.h
+++ b/include/rocksdb/trace_record.h
@@ -5,6 +5,7 @@
#pragma once
+#include <cstdint>
#include <memory>
#include <string>
#include <vector>
diff --git a/include/rocksdb/write_batch_base.h b/include/rocksdb/write_batch_base.h
index 3334a1292..43b186029 100644
--- a/include/rocksdb/write_batch_base.h
+++ b/include/rocksdb/write_batch_base.h
@@ -9,6 +9,7 @@
#pragma once
#include <cstddef>
+#include <cstdint>
#include "rocksdb/attribute_groups.h"
#include "rocksdb/rocksdb_namespace.h"
|