From 95bdb5eb115be4be75101e50876835c05356643d Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Mon, 9 Dec 2024 12:02:54 -0500 Subject: [PATCH] Remove some odd copy&paste comments --- src/lib/support/tests/TestFluentTreeObject.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/support/tests/TestFluentTreeObject.cpp b/src/lib/support/tests/TestFluentTreeObject.cpp index 85e8a51e93cdf9..60ec3853fa01ac 100644 --- a/src/lib/support/tests/TestFluentTreeObject.cpp +++ b/src/lib/support/tests/TestFluentTreeObject.cpp @@ -91,24 +91,24 @@ EndpointData gEndpointDataItems[] = { /// search index definitions struct ByEndpoint { - using Key = EndpointId; // the KEY inside a type │ │ │ - using Type = const EndpointData; // the values for a sub-search │ │ │ + using Key = EndpointId; + using Type = const EndpointData; static Span GetSpan(EndpointItemsWrapper & data) { return data.data; } static bool HasKey(const Key & id, const Type & instance) { return instance.id == id; } }; struct ByServerCluster { - using Key = ClusterId; // the KEY inside a type │ │ │ - using Type = const ClusterData; // the values for a sub-search │ │ │ + using Key = ClusterId; + using Type = const ClusterData; static Span GetSpan(const EndpointData & data) { return data.serverClusters; } static bool HasKey(const Key & id, const Type & instance) { return instance.id == id; } }; struct ByClientCluster { - using Key = ClusterId; // the KEY inside a type │ │ │ - using Type = const ClusterData; // the values for a sub-search │ │ │ + using Key = ClusterId; + using Type = const ClusterData; static Span GetSpan(const EndpointData & data) { return data.clientClusters; } static bool HasKey(const Key & id, const Type & instance) { return instance.id == id; } };