fix-gcc-13-issue
authorCeph Packaging Team <team+ceph@tracker.debian.org>
Mon, 9 Oct 2023 06:53:31 +0000 (07:53 +0100)
committerThomas Goirand <zigo@debian.org>
Mon, 9 Oct 2023 06:53:31 +0000 (07:53 +0100)
Gbp-Pq: Name fix-gcc-13-issue.patch

src/common/Cycles.h
src/common/subsys_types.h
src/librbd/api/PoolMetadata.h
src/rocksdb/db/compaction/compaction_iterator.h
src/rocksdb/include/rocksdb/rocksdb_namespace.h
src/rocksdb/third-party/folly/folly/synchronization/detail/ProxyLockable-inl.h

index 16e0aa67fc144f2cb769d15d7dbd203f7a2acf98..b546479c2b3519609fd2429e19b0886a38f801f8 100644 (file)
@@ -32,6 +32,8 @@
 #ifndef CEPH_CYCLES_H
 #define CEPH_CYCLES_H
 
+#include <cstdint>
+
 /**
  * This class provides static methods that read the fine-grain CPU
  * cycle counter and translate between cycle-level times and absolute
index cd4871be602bb056e7b57971d197cccc051f04ff..367095a42519b29d61427ce84f44eae4299eb061 100644 (file)
@@ -17,6 +17,7 @@
 
 #include <algorithm>
 #include <array>
+#include <cstdint>
 
 enum ceph_subsys_id_t {
   ceph_subsys_,   // default
index c0a8173596e5cbc08c83798393e1b559a8c9a19f..8d982879aa9c7bab92f3fec8a9482df9158d017d 100644 (file)
@@ -9,6 +9,7 @@
 
 #include <map>
 #include <string>
+#include <cstdint>
 
 namespace librbd {
 
index 8be60eb9e8b0aa4689a9b8b9e85705c407d30054..033773be27f01f4e0fc1e0b022309ab8fa1dfbae 100644 (file)
@@ -9,6 +9,7 @@
 #include <string>
 #include <unordered_set>
 #include <vector>
+#include <cstdint>
 
 #include "db/compaction/compaction.h"
 #include "db/compaction/compaction_iteration_stats.h"
index e9f8620d06ecca860bfff0a6f8e143ceebc86fff..41c31ee2ea2b2863944d4b43bc5c602749ad1d21 100644 (file)
@@ -8,3 +8,5 @@
 #ifndef ROCKSDB_NAMESPACE
 #define ROCKSDB_NAMESPACE rocksdb
 #endif
+
+#include <cstdint>
index 573330ceb08ffa1e14aaa69f2bfb57698af27f92..ada1e63d4e715629e15b05d57ca333ca996f8e3f 100644 (file)
@@ -14,6 +14,7 @@
 #include <mutex>
 #include <stdexcept>
 #include <utility>
+#include <system_error>
 
 namespace folly {
 namespace detail {