Make unit tests compile again after rebasing

This commit is contained in:
Daniel J. Hofmann
2016-03-19 16:08:59 +01:00
committed by Patrick Niklaus
parent 5beaab97da
commit 61c9c69718
3 changed files with 6 additions and 4 deletions
+1 -2
View File
@@ -50,8 +50,7 @@ Hint Hint::FromBase64(const std::string &base64Hint)
bool operator==(const Hint &lhs, const Hint &rhs)
{
return std::tie(lhs.phantom, lhs.data_checksum) ==
std::tie(rhs.phantom, rhs.data_checksum);
return std::tie(lhs.phantom, lhs.data_checksum) == std::tie(rhs.phantom, rhs.data_checksum);
}
std::ostream &operator<<(std::ostream &out, const Hint &hint) { return out << hint.ToBase64(); }