Skip to content

Commit

Permalink
Fix signature of IsValidCASEAuthTag.
Browse files Browse the repository at this point in the history
  • Loading branch information
bzbarsky-apple committed Jun 3, 2022
1 parent 87c5997 commit 4e3998e
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 4e3998e

Please sign in to comment.