diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-09-13 16:22:03 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-09-13 16:22:03 -0400 |
| commit | eb8dbaa770a57557d67c817c2839c64f536a6ce4 (patch) | |
| tree | 77bbbb79fb70f79965e7f6fd75bb5f4799a6f120 /include/framework/RecordInterface.h | |
| parent | 076e104b8672924c3d80cd1da2fdb5ebee1766ac (diff) | |
| download | dynamic-extension-eb8dbaa770a57557d67c817c2839c64f536a6ce4.tar.gz | |
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.
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)); } }; |