diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-08-24 17:00:31 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-08-24 17:00:31 -0400 |
| commit | 076e104b8672924c3d80cd1da2fdb5ebee1766ac (patch) | |
| tree | e33a8081c61899c5d1a471401605e55716ca3ff4 /include/framework/RecordInterface.h | |
| parent | 1cb522b36382381ef3f1494f24b0c6a98f8843a9 (diff) | |
| download | dynamic-extension-076e104b8672924c3d80cd1da2fdb5ebee1766ac.tar.gz | |
Migrated over to using psudb-common utilities/headers
Diffstat (limited to 'include/framework/RecordInterface.h')
| -rw-r--r-- | include/framework/RecordInterface.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/framework/RecordInterface.h b/include/framework/RecordInterface.h index f0d9f5c..f78918c 100644 --- a/include/framework/RecordInterface.h +++ b/include/framework/RecordInterface.h @@ -13,8 +13,7 @@ #include <concepts> #include <cmath> -#include "util/base.h" -#include "util/hash.h" +#include "psu-util/hash.h" namespace de { @@ -208,7 +207,7 @@ struct EuclidPoint{ template<RecordInterface R> struct RecordHash { size_t operator()(R const &rec) const { - return hash_bytes((char *) &rec, sizeof(R)); + return psudb::hash_bytes((char *) &rec, sizeof(R)); } }; |