From 9876d74e503df64eb9e82e540ca41fcf593ebf64 Mon Sep 17 00:00:00 2001 From: "Douglas B. Rumbaugh" Date: Fri, 6 Dec 2024 16:54:05 -0500 Subject: Adjusted query result interfaces Now, the vector<> is part of the user-defined type, not required by the framework. This should allow for more flexibility in either using alternative containers, or for more sensible implementations of queries with single value results (like range count). --- tests/include/pointlookup.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'tests/include/pointlookup.h') diff --git a/tests/include/pointlookup.h b/tests/include/pointlookup.h index af58440..f3a03dd 100644 --- a/tests/include/pointlookup.h +++ b/tests/include/pointlookup.h @@ -27,12 +27,12 @@ * include statement. */ -#include "shard/FSTrie.h" -#include "testing.h" -#include -using namespace de; -typedef StringRec R; -typedef FSTrie Shard; +// #include "shard/FSTrie.h" +// #include "testing.h" +// #include +// using namespace de; +// typedef StringRec R; +// typedef FSTrie Shard; START_TEST(t_point_lookup_query) { @@ -99,7 +99,7 @@ START_TEST(t_buffer_point_lookup) END_TEST -static void inject_pointlookup_tests(Suite *suite) { +[[maybe_unused]] static void inject_pointlookup_tests(Suite *suite) { TCase *point_lookup_query = tcase_create("Point Lookup Testing"); tcase_add_test(point_lookup_query, t_point_lookup_query); tcase_add_test(point_lookup_query, t_buffer_point_lookup); -- cgit v1.2.3