summaryrefslogtreecommitdiffstats
path: root/include/framework/RecordInterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/framework/RecordInterface.h')
-rw-r--r--include/framework/RecordInterface.h5
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));
}
};