diff options
author | 2020-06-19 13:48:44 -0700 | |
---|---|---|
committer | 2020-06-19 13:48:44 -0700 | |
commit | 2ad9172af2f7411d9915bbbf93d05ef89b417731 (patch) | |
tree | 401e456bde2a7fb53d0d3e5ce24391f7634d47fa /Source/Utils/WarpXMovingWindow.cpp | |
parent | 7e2a1e31982514b02c59bb055cb1ba4ab00e5439 (diff) | |
download | WarpX-2ad9172af2f7411d9915bbbf93d05ef89b417731.tar.gz WarpX-2ad9172af2f7411d9915bbbf93d05ef89b417731.tar.zst WarpX-2ad9172af2f7411d9915bbbf93d05ef89b417731.zip |
Fix: Extra Semicolons & In-Line Doxygen (#1109)
Fix superfluous semicolons and two in-line doxygen strings.
Diffstat (limited to 'Source/Utils/WarpXMovingWindow.cpp')
-rw-r--r-- | Source/Utils/WarpXMovingWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Utils/WarpXMovingWindow.cpp b/Source/Utils/WarpXMovingWindow.cpp index 482bc1f21..9f96512d9 100644 --- a/Source/Utils/WarpXMovingWindow.cpp +++ b/Source/Utils/WarpXMovingWindow.cpp @@ -310,7 +310,7 @@ WarpX::shiftMF (MultiFab& mf, const Geometry& geom, int num_shift, int dir, AMREX_PARALLEL_FOR_4D ( outbox, nc, i, j, k, n, { srcfab(i,j,k,n) = external_field; - }); + }) } else if (useparser == true) { // index type of the src mf auto const& mf_IndexType = (tmpmf).ixType(); @@ -350,7 +350,7 @@ WarpX::shiftMF (MultiFab& mf, const Geometry& geom, int num_shift, int dir, AMREX_PARALLEL_FOR_4D ( dstBox, nc, i, j, k, n, { dstfab(i,j,k,n) = srcfab(i+shift.x,j+shift.y,k+shift.z,n); - }); + }) } } |