From eb8dbaa770a57557d67c817c2839c64f536a6ce4 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Wed, 13 Sep 2023 16:22:03 -0400 Subject: Began re-architecting the project for concurrency support The project is now in a state where it builds, but it probably has a lot of bugs still. --- include/framework/RecordInterface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/framework/RecordInterface.h') 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 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)); } }; -- cgit v1.2.3