From 0a511aca9254efc6580c077c05e609d157825f9c Mon Sep 17 00:00:00 2001 From: Owen Green Date: Tue, 4 Oct 2022 11:56:28 +0100 Subject: [PATCH] Revert "Wrapper: Update for allocator changes (#38)" This reverts commit 5cc9f4f12076fba2370235af7ae0024c7e7a2427. --- include/FluidCLIWrapper.hpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/include/FluidCLIWrapper.hpp b/include/FluidCLIWrapper.hpp index 564acb3..6869f0f 100644 --- a/include/FluidCLIWrapper.hpp +++ b/include/FluidCLIWrapper.hpp @@ -16,7 +16,6 @@ under the European Union’s Horizon 2020 research and innovation programme #include #include #include -#include #include #include #include @@ -403,7 +402,7 @@ class CLIWrapper static int run(index argc, const char* argv[]) { - ParamSetType params(descriptors(), FluidDefaultAllocator()); + ParamSetType params(descriptors()); FlagsType flags; flags.fill(false); @@ -461,8 +460,8 @@ class CLIWrapper // Create client after all parameters are set - ClientType client(params, FluidContext()); - Result result; + ClientType client(params); + Result result; client.enqueue(params); result = client.process();