Skip to content

Commit

Permalink
Review fix
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Mar 13, 2024
1 parent 80dc8aa commit 29b91c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/include/Ice/OutputStream.h
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ namespace Ice
assert(v >= 0);
if (v > 254)
{
*dest++ = std::byte(255);
*dest++ = std::byte{255};
write(v, dest);
}
else
Expand Down

0 comments on commit 29b91c1

Please sign in to comment.