You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem here is not that the function pointer was instrumented (it returns a double value, os it's fine). The problem is the extra comma "," that is added. Without a reproducible this is hard to fix.
This was incorrectly instrumented:
This line:
fptr[idx_dst] = (*fine_volumes)(SAMRAI::pdat::CellIndex(*bi));
Became:
fptr[idx_dst] = _FPC_CHECK_((*fine_volumes)(SAMRAI::pdat::CellIndex(* bi), ), 125, “..ineOperator.cxx”);
Here a function pointer is assigned to an array element.
The text was updated successfully, but these errors were encountered: