Skip to content

Commit

Permalink
fix warning in pcg lib
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgottesbueren committed Jul 13, 2023
1 parent 529ef90 commit 207ca36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external_tools/pcg/pcg_extras.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ operator<<(std::basic_ostream<CharT,Traits>&out, uint8_t value)

template <typename CharT, typename Traits>
std::basic_istream<CharT,Traits>&
operator>>(std::basic_istream<CharT,Traits>& in, uint8_t target)
operator>>(std::basic_istream<CharT,Traits>& in, uint8_t& target)
{
uint32_t value = 0xdecea5edU;
in >> value;
Expand Down

0 comments on commit 207ca36

Please sign in to comment.