diff options
Diffstat (limited to 'tests/de_bsm_tomb.cpp')
| -rw-r--r-- | tests/de_bsm_tomb.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/de_bsm_tomb.cpp b/tests/de_bsm_tomb.cpp index 493440e..3a24e87 100644 --- a/tests/de_bsm_tomb.cpp +++ b/tests/de_bsm_tomb.cpp @@ -22,7 +22,10 @@ using namespace de; typedef Rec R; -typedef DynamicExtension<R, ISAMTree<R>, rq::Query<R, ISAMTree<R>>, LayoutPolicy::BSM, DeletePolicy::TOMBSTONE, SerialScheduler> DE; +typedef ISAMTree<R> S; +typedef rq::Query<S> Q; + +typedef DynamicExtension<S, Q, LayoutPolicy::BSM, DeletePolicy::TOMBSTONE, SerialScheduler> DE; #include "include/dynamic_extension.h" |