Skip to content

Commit 01b32a3

Browse files
authored
Merge pull request #129 from ajnonaka/development
fix compilation due to new syntax
2 parents 142a0c4 + 1c004ee commit 01b32a3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Source/Particles/LaserParticleContainer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,14 +224,14 @@ LaserParticleContainer::LaserParticleContainer (AmrCore* amr_core, int ispecies,
224224
#endif
225225
AMREX_ALWAYS_ASSERT_WITH_MESSAGE(
226226
(m_nvec[0]-windir[0]) + (m_nvec[1]-windir[1]) + (m_nvec[2]-windir[2])
227-
< 1.e-12, "do_continous_injection for laser particle only works" +
227+
< 1.e-12, "do_continous_injection for laser particle only works"
228228
" if moving window direction and laser propagation direction are the same");
229229
if ( WarpX::gamma_boost>1 ){
230230
AMREX_ALWAYS_ASSERT_WITH_MESSAGE(
231231
(WarpX::boost_direction[0]-0)*(WarpX::boost_direction[0]-0) +
232232
(WarpX::boost_direction[1]-0)*(WarpX::boost_direction[1]-0) +
233233
(WarpX::boost_direction[2]-1)*(WarpX::boost_direction[2]-1) < 1.e-12,
234-
"do_continous_injection for laser particle only works if " +
234+
"do_continous_injection for laser particle only works if "
235235
"warpx.boost_direction = z. TODO: all directions.");
236236
}
237237
}

0 commit comments

Comments
 (0)