diff options
author | 2019-09-13 10:05:44 +0200 | |
---|---|---|
committer | 2019-09-13 10:05:44 +0200 | |
commit | bfbb36bae052eac7b47d4a002ab67358539ba422 (patch) | |
tree | 0e1fc04c47f178aeb2ce84fbd5e026b78f87f193 /Source/Particles/MultiParticleContainer.cpp | |
parent | 2e29e6b2f791f56898cd3ba3f4c351913f9db3c0 (diff) | |
download | WarpX-bfbb36bae052eac7b47d4a002ab67358539ba422.tar.gz WarpX-bfbb36bae052eac7b47d4a002ab67358539ba422.tar.zst WarpX-bfbb36bae052eac7b47d4a002ab67358539ba422.zip |
Applied style changes
Diffstat (limited to '')
-rw-r--r-- | Source/Particles/MultiParticleContainer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Particles/MultiParticleContainer.cpp b/Source/Particles/MultiParticleContainer.cpp index 9c9bdcec4..53ce0fbbc 100644 --- a/Source/Particles/MultiParticleContainer.cpp +++ b/Source/Particles/MultiParticleContainer.cpp @@ -106,7 +106,7 @@ MultiParticleContainer::ReadParameters () for (auto const& name : photon_species) { auto it = std::find(species_names.begin(), species_names.end(), name); AMREX_ALWAYS_ASSERT_WITH_MESSAGE( - it != species_names.end(), + it != species_names.end(), "ERROR: species in particles.rigid_injected_species must be part of particles.species_names"); int i = std::distance(species_names.begin(), it); species_types[i] = PCTypes::Photon; |