diff options
author | 2021-02-12 05:54:11 +0100 | |
---|---|---|
committer | 2021-02-11 20:54:11 -0800 | |
commit | a2e1ef40dd671da570a1687903f889c91ef12d5b (patch) | |
tree | ea2f881267867347f542452fc36071a55727b9ae /Source/FieldSolver/SpectralSolver/SpectralAlgorithms | |
parent | 4055ee0fd1096d22186e68b8c588f4a8f120d8e8 (diff) | |
download | WarpX-a2e1ef40dd671da570a1687903f889c91ef12d5b.tar.gz WarpX-a2e1ef40dd671da570a1687903f889c91ef12d5b.tar.zst WarpX-a2e1ef40dd671da570a1687903f889c91ef12d5b.zip |
Spectral solver: remove extra semicolons (#1709)
Diffstat (limited to 'Source/FieldSolver/SpectralSolver/SpectralAlgorithms')
3 files changed, 3 insertions, 3 deletions
diff --git a/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/AvgGalileanAlgorithm.H b/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/AvgGalileanAlgorithm.H index 9d3facf3f..0ae150fe3 100644 --- a/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/AvgGalileanAlgorithm.H +++ b/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/AvgGalileanAlgorithm.H @@ -19,7 +19,7 @@ class AvgGalileanAlgorithm : public SpectralBaseAlgorithm virtual void pushSpectralFields (SpectralFieldData& f) const override final; virtual int getRequiredNumberOfFields () const override final { return SpectralAvgFieldIndex::n_fields; - }; + } void InitializeSpectralCoefficients( const SpectralKSpace& spectral_kspace, const amrex::DistributionMapping& dm, diff --git a/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/ComovingPsatdAlgorithm.H b/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/ComovingPsatdAlgorithm.H index 2d9962e4d..2623a3ea6 100644 --- a/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/ComovingPsatdAlgorithm.H +++ b/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/ComovingPsatdAlgorithm.H @@ -33,7 +33,7 @@ class ComovingPsatdAlgorithm : public SpectralBaseAlgorithm virtual int getRequiredNumberOfFields () const override final { return SpectralFieldIndex::n_fields; - }; + } /* \brief Initialize the coefficients needed in the update equations */ diff --git a/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/GalileanAlgorithm.H b/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/GalileanAlgorithm.H index cc43f0489..0c41455c1 100644 --- a/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/GalileanAlgorithm.H +++ b/Source/FieldSolver/SpectralSolver/SpectralAlgorithms/GalileanAlgorithm.H @@ -21,7 +21,7 @@ class GalileanAlgorithm : public SpectralBaseAlgorithm virtual void pushSpectralFields (SpectralFieldData& f) const override final; virtual int getRequiredNumberOfFields () const override final { return SpectralFieldIndex::n_fields; - }; + } void InitializeSpectralCoefficients (const SpectralKSpace& spectral_kspace, const amrex::DistributionMapping& dm, const amrex::Real dt); |