From bf2ce8ff757400798d2b9642efe970a42aec3a51 Mon Sep 17 00:00:00 2001 From: Tomasz Grabiec Date: Mon, 20 Mar 2023 15:18:05 +0100 Subject: [PATCH] config: Reformat --- db/config.hh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/db/config.hh b/db/config.hh index e339164701..c93806fee8 100644 --- a/db/config.hh +++ b/db/config.hh @@ -84,8 +84,14 @@ struct experimental_features_t { // NOTE: RAFT and BROADCAST_TABLES features are not enabled via `experimental` umbrella flag. // These options should be enabled explicitly. // RAFT feature has to be enabled if BROADCAST_TABLES is enabled. - enum class feature { UNUSED, UDF, ALTERNATOR_STREAMS, RAFT, - BROADCAST_TABLES, KEYSPACE_STORAGE_OPTIONS }; + enum class feature { + UNUSED, + UDF, + ALTERNATOR_STREAMS, + RAFT, + BROADCAST_TABLES, + KEYSPACE_STORAGE_OPTIONS, + }; static std::map map(); // See enum_option. static std::vector> all(); };