diff options
Diffstat (limited to 'include/shard/WIRS.h')
| -rw-r--r-- | include/shard/WIRS.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/shard/WIRS.h b/include/shard/WIRS.h index fafdef0..19d3eea 100644 --- a/include/shard/WIRS.h +++ b/include/shard/WIRS.h @@ -16,16 +16,22 @@ #include <memory> #include <concepts> -#include "ds/PriorityQueue.h" +#include "psu-ds/PriorityQueue.h" #include "util/Cursor.h" -#include "ds/Alias.h" -#include "ds/BloomFilter.h" +#include "psu-ds/Alias.h" +#include "psu-ds/BloomFilter.h" #include "util/bf_config.h" #include "framework/MutableBuffer.h" #include "framework/RecordInterface.h" #include "framework/ShardInterface.h" #include "framework/QueryInterface.h" +using psudb::CACHELINE_SIZE; +using psudb::BloomFilter; +using psudb::PriorityQueue; +using psudb::queue_record; +using psudb::Alias; + namespace de { thread_local size_t wirs_cancelations = 0; |