diff options
Diffstat (limited to 'tests/de_tier_tomb.cpp')
| -rw-r--r-- | tests/de_tier_tomb.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/de_tier_tomb.cpp b/tests/de_tier_tomb.cpp index b1387bb..930d0d5 100644 --- a/tests/de_tier_tomb.cpp +++ b/tests/de_tier_tomb.cpp @@ -23,7 +23,9 @@ using namespace de; typedef Rec R; -typedef DynamicExtension<Rec, ISAMTree<R>, rq::Query<R, ISAMTree<R>>, LayoutPolicy::TEIRING, DeletePolicy::TOMBSTONE, SerialScheduler> DE; +typedef ISAMTree<R> S; +typedef rq::Query<S> Q; +typedef DynamicExtension<S, Q, LayoutPolicy::TEIRING, DeletePolicy::TOMBSTONE, SerialScheduler> DE; #include "include/dynamic_extension.h" |