Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions include/FluidCLIWrapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ under the European Union’s Horizon 2020 research and innovation programme
#include <clients/common/OfflineClient.hpp>
#include <clients/common/ParameterSet.hpp>
#include <clients/common/ParameterTypes.hpp>
#include <data/FluidMemory.hpp>
#include <FluidVersion.hpp>
#include <cctype>
#include <chrono>
Expand Down Expand Up @@ -402,7 +403,7 @@ class CLIWrapper

static int run(index argc, const char* argv[])
{
ParamSetType params(descriptors());
ParamSetType params(descriptors(), FluidDefaultAllocator());
FlagsType flags;
flags.fill(false);

Expand Down Expand Up @@ -460,8 +461,8 @@ class CLIWrapper

// Create client after all parameters are set

ClientType client(params);
Result result;
ClientType client(params, FluidContext());
Result result;

client.enqueue(params);
result = client.process();
Expand Down