Skip to content

Commit

Permalink
fix warning about unused value
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldreik authored and GiulioRomualdi committed Jan 7, 2025
1 parent c7016f0 commit aa8f160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class NullStream : public std::ostream
}
};

template <class T> const NullStream& operator<<(NullStream&& os, const T& value)
template <class T> const NullStream& operator<<(NullStream&& os, const T&)
{
return os;
}
Expand Down

0 comments on commit aa8f160

Please sign in to comment.