Skip to content

Commit

Permalink
Restyle
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 committed Nov 29, 2024
1 parent 2fa9e4c commit c727e05
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/app/data-model-provider/MetadataTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ enum class EndpointCompositionPattern : uint8_t
{
// Tree pattern supports a general tree of endpoints. Commonly used for
// device types that support physical device composition (e.g. Refrigerator)
kTree = 0x1,
kTree = 0x1,

// A full-family pattern is a list fo all descendant endpoints, with no
// imposed hierarchy.
Expand All @@ -56,8 +56,7 @@ struct EndpointInfo
EndpointId parentId;
EndpointCompositionPattern compositionPattern;

explicit EndpointInfo(EndpointId parent) : parentId(parent), compositionPattern(EndpointCompositionPattern::kFullFamily)
{}
explicit EndpointInfo(EndpointId parent) : parentId(parent), compositionPattern(EndpointCompositionPattern::kFullFamily) {}
EndpointInfo(EndpointId parent, EndpointCompositionPattern pattern) : parentId(parent), compositionPattern(pattern) {}
};

Expand Down

0 comments on commit c727e05

Please sign in to comment.