diff options
author | 2023-06-13 00:39:20 +0200 | |
---|---|---|
committer | 2023-06-12 15:39:20 -0700 | |
commit | 2289f4a24e6d0d6a5957f76dd6eed19f129860e6 (patch) | |
tree | 7f19698e8033c91fa4c441203a4f8e28513acb2d /Source/Particles/PhysicalParticleContainer.cpp | |
parent | ceef66ccd87d9eacdbc18f0ae777f6848e060c7f (diff) | |
download | WarpX-2289f4a24e6d0d6a5957f76dd6eed19f129860e6.tar.gz WarpX-2289f4a24e6d0d6a5957f76dd6eed19f129860e6.tar.zst WarpX-2289f4a24e6d0d6a5957f76dd6eed19f129860e6.zip |
Replace amrex::Abort with WARPX_ABORT_WITH_MESSAGE (#3965)
* replace amrex::Abort with WarpX macros
* use amrex::Abort in a GPU kernel
* use amrex::Abort in a GPU kernel
* use amrex::Abort in a GPU kernel
* use amrex::Abort in a GPU kernel
* use amrex::Abort in a GPU kernel
* use amrex::Abort in a GPU kernel
* adding back missing include
* use amrex::Abort in a GPU kernel
* use amrex::Abort in a GPU kernel
* use amrex::Abort in a GPU kernel
* bump precision
Diffstat (limited to 'Source/Particles/PhysicalParticleContainer.cpp')
-rw-r--r-- | Source/Particles/PhysicalParticleContainer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Particles/PhysicalParticleContainer.cpp b/Source/Particles/PhysicalParticleContainer.cpp index 0c9b7ce69..60a5afbeb 100644 --- a/Source/Particles/PhysicalParticleContainer.cpp +++ b/Source/Particles/PhysicalParticleContainer.cpp @@ -375,13 +375,13 @@ PhysicalParticleContainer::BackwardCompatibility () ParmParse pp_species_name(species_name); std::vector<std::string> backward_strings; if (pp_species_name.queryarr("plot_vars", backward_strings)){ - amrex::Abort("<species>.plot_vars is not supported anymore. " + WARPX_ABORT_WITH_MESSAGE("<species>.plot_vars is not supported anymore. " "Please use the new syntax for diagnostics, see documentation."); } int backward_int; if (pp_species_name.query("plot_species", backward_int)){ - amrex::Abort("<species>.plot_species is not supported anymore. " + WARPX_ABORT_WITH_MESSAGE("<species>.plot_species is not supported anymore. " "Please use the new syntax for diagnostics, see documentation."); } } |