From a2cc511e12da39af00948909fcada87cc135a0cd Mon Sep 17 00:00:00 2001 From: Rishabh Dave Date: Thu, 18 Jun 2026 18:32:49 +0530 Subject: [PATCH] include wherever missing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes errors like this that are seen while building Ceph repo's main branch on Fedora 46, 43 and 44 - repos/ceph/src/rocksdb/include/rocksdb/trace_record.h:55:32: error: expected ‘)’ before ‘timestamp’ 55 | explicit TraceRecord(uint64_t timestamp); Signed-off-by: Rishabh Dave --- include/rocksdb/trace_record.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/rocksdb/trace_record.h b/include/rocksdb/trace_record.h index c00f5cafbe74..9551ad5b770c 100644 --- a/include/rocksdb/trace_record.h +++ b/include/rocksdb/trace_record.h @@ -5,6 +5,7 @@ #pragma once +#include #include #include #include