config: Reformat

This commit is contained in:
Tomasz Grabiec
2023-03-20 15:18:05 +01:00
parent c25a718008
commit bf2ce8ff75

View File

@@ -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<sstring, feature> map(); // See enum_option.
static std::vector<enum_option<experimental_features_t>> all();
};