Skip to content

Commit

Permalink
More
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Cruz Viotti <[email protected]>
  • Loading branch information
jviotti committed Feb 10, 2024
1 parent dd572f2 commit 5c52d3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ template <typename CharT, typename Traits> class BasicDecoder {
result.reserve(length);
std::uint64_t counter = 0;
while (counter < length) {
result += this->get_byte();
result += static_cast<CharT>(this->get_byte());
counter += 1;
}

Expand Down

0 comments on commit 5c52d3e

Please sign in to comment.