]> git-server-git.apps.pok.os.sepia.ceph.com Git - rocksdb.git/commitdiff
checkpoint.h: Add missing includes <cstdint> 44/head
authorKhem Raj <raj.khem@gmail.com>
Wed, 25 Jan 2023 05:40:43 +0000 (21:40 -0800)
committerTim Serong <tserong@suse.com>
Mon, 20 Mar 2023 02:54:30 +0000 (13:54 +1100)
It uses uint64_t and it comes from <cstdint>
This is needed with GCC 13 and newer [1]

[1] https://www.gnu.org/software/gcc/gcc-13/porting_to.html

Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 31012cdfa435d9203da3c3de8127b66bf018692a)

include/rocksdb/utilities/checkpoint.h

index 6046513aba4bdaf5e2ad4bc22f498c2bcacf7c7d..ecf92061629fac69ea18788005d2a1f5ed9a8792 100644 (file)
@@ -8,6 +8,7 @@
 #pragma once
 #ifndef ROCKSDB_LITE
 
+#include <cstdint>
 #include <string>
 #include <vector>