Skip to content

Commit

Permalink
Fix signature of IsValidCASEAuthTag. (#19189)
Browse files Browse the repository at this point in the history
Fixes #19145
  • Loading branch information
bzbarsky-apple authored and pull[bot] committed Sep 25, 2023
1 parent c9dce9a commit 1433932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/core/CASEAuthTag.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ constexpr CASEAuthTag CASEAuthTagFromNodeId(NodeId aNodeId)
return aNodeId & kMaskCASEAuthTag;
}

constexpr CASEAuthTag IsValidCASEAuthTag(CASEAuthTag aCAT)
constexpr bool IsValidCASEAuthTag(CASEAuthTag aCAT)
{
return (aCAT & kTagVersionMask) > 0;
}
Expand Down

0 comments on commit 1433932

Please sign in to comment.