diff options
Diffstat (limited to 'include/framework/RecordInterface.h')
| -rw-r--r-- | include/framework/RecordInterface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/framework/RecordInterface.h b/include/framework/RecordInterface.h index f78918c..1ef1984 100644 --- a/include/framework/RecordInterface.h +++ b/include/framework/RecordInterface.h @@ -207,7 +207,7 @@ struct EuclidPoint{ template<RecordInterface R> struct RecordHash { size_t operator()(R const &rec) const { - return psudb::hash_bytes((char *) &rec, sizeof(R)); + return psudb::hash_bytes((std::byte *) &rec, sizeof(R)); } }; |