Skip to content

Commit

Permalink
More merge fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andreilitvin committed Dec 6, 2024
1 parent bb93623 commit e413adf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/support/FluentTreeObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ namespace chip {
/// Where a `ByFoo` structure looks like:
///
/// struct ByFoo {
/// using Key = int; // the KEY inside a type │ │ │ using Type = SomeContainerStruct; // the values for
/// a sub-search │ │ │ static Span<Type> GetSpan(Data
/// & data) { /* return ... */ } │ │ │ static bool HasKey(const Key & id, const Type & instance)
/// { /* return "instance has key id" */ }
/// using Key = int; // the KEY inside a type
/// using Type = SomeContainerStruct; // the values for a sub-search
/// static Span<Type> GetSpan(Data & data) { /* return ... */ }
/// static bool HasKey(const Key & id, const Type & instance) { /* return "instance has key id" */ }
/// }
///
/// Where we define:
Expand Down

0 comments on commit e413adf

Please sign in to comment.