Skip to content

Commit

Permalink
SENSEI 4.0: Fix Build for Particles (AMReX-Codes#2869)
Browse files Browse the repository at this point in the history
## Summary

This part causes a compile error now in WarpX.

cc  @burlen @kwryankrattiger

## Additional background

X-ref: Blocks WarpX 22.07 release ECP-WarpX/WarpX#3211

Follow-up to:
- AMReX-Codes#2785 
- AMReX-Codes#2834
  • Loading branch information
ax3l committed Jul 4, 2022
1 parent dc8b734 commit cbdc658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/Extern/SENSEI/AMReX_AmrMeshParticleInSituBridge.H
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ int AmrMeshParticleInSituBridge::update(

data_adaptor->SetDataTime(time);
data_adaptor->SetDataTimeStep(step);
ret = analysis_adaptor->Execute(data_adaptor) ? 0 : -1;
ret = analysis_adaptor->Execute(data_adaptor, nullptr) ? 0 : -1;
data_adaptor->ReleaseData();
data_adaptor->Delete();

Expand Down

0 comments on commit cbdc658

Please sign in to comment.