Merge 'tree: restore header compilation (${mode}-headers)' from Botond Dénes

Our CI accidentally switched to using CMake to compile scylla and it looks like CMake doesn't run the `${mode}-headers` command correctly and some missing-include in headers managed to slip in.

Compile fix, no backport needed.

Closes scylladb/scylladb#22471

* github.com:scylladb/scylladb:
  test/raft/replication.hh: add missing include <fmt/std.h>
  test/boost/bptree_validation.hh: add missing include <fmt/format.h>
This commit is contained in:
Pavel Emelyanov
2025-01-23 15:35:55 +03:00
2 changed files with 2 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
#include <stddef.h>
#include <iostream>
#include <fmt/format.h>
#include "utils/bptree.hh"
namespace bplus {

View File

@@ -11,6 +11,7 @@
#include <memory>
#include <random>
#include <bit>
#include <fmt/std.h>
#include <seastar/core/app-template.hh>
#include <seastar/core/gate.hh>
#include <seastar/core/sleep.hh>