Hello:
I noticed some changes in the newest nektar version in the FieldIO class (?). This class had the constructor option:
LIB_UTILITIES_EXPORT FieldIO(LibUtilities::CommSharedPtr pComm,
bool sharedFilesystem = false);
However, it is not there in the new one... I have a solver that uses this constructor like this
LiibUtilities::FieldIO fIO(vSession->GetComm))
ie, with the default argument false.
With the new version, there is no default argument but if I try to force the condition:
fIO(vSession->GetComm,false)) I get errors
$: cannot declare variable ‘fIO’ to be of abstract type ‘Nektar::LibUtilities::FieldIO’
How can I use this constructor like for the previous version?
Thanks