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). --- include/framework/scheduling/Task.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/framework/scheduling') diff --git a/include/framework/scheduling/Task.h b/include/framework/scheduling/Task.h index 6b6f040..34f053a 100644 --- a/include/framework/scheduling/Task.h +++ b/include/framework/scheduling/Task.h @@ -35,7 +35,7 @@ struct ReconstructionArgs { }; template Q, typename DE> struct QueryArgs { - std::promise> result_set; + std::promise result_set; typename Q::Parameters query_parms; DE *extension; }; -- cgit v1.2.3