diff options
author | 2019-09-13 11:13:26 -0700 | |
---|---|---|
committer | 2019-09-13 11:13:26 -0700 | |
commit | 7b0722b8bbc6880b4183887ced94738762904957 (patch) | |
tree | 5c7a1b817b17563ba28d2ff6ab856560725580ef /Source/Particles/MultiParticleContainer.cpp | |
parent | 80a22a69820d24a712d7ceed8928c4f368bd782b (diff) | |
parent | e6eadd3da2ec11003767140cbee2d6491341dba7 (diff) | |
download | WarpX-7b0722b8bbc6880b4183887ced94738762904957.tar.gz WarpX-7b0722b8bbc6880b4183887ced94738762904957.tar.zst WarpX-7b0722b8bbc6880b4183887ced94738762904957.zip |
Merge pull request #347 from ax3l/fix-eolCheck
Re-Activate EOL whitespace Check
Diffstat (limited to 'Source/Particles/MultiParticleContainer.cpp')
-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; |