}
std::array<uint8_t, 8> Hash;
- bool empty() const { return *(const uint64_t*)Hash.data() == 0; }\r
+ bool empty() const { return *(const uint64_t*)Hash.data() == 0; }
/// Given a sequence of bytes representing a record, compute a global hash for
/// this record. Due to the nature of global hashes incorporating the hashes
template <typename Range>
static std::vector<GloballyHashedType> hashTypes(Range &&Records) {
std::vector<GloballyHashedType> Hashes;
- bool UnresolvedRecords = false;\r
- for (const auto &R : Records) {\r
+ bool UnresolvedRecords = false;
+ for (const auto &R : Records) {
GloballyHashedType H = hashType(R, Hashes, Hashes);
if (H.empty())
UnresolvedRecords = true;