From 04d180974912e79b69219c597ace654ab69c450f Mon Sep 17 00:00:00 2001 From: Luca Fedeli Date: Wed, 28 Oct 2020 02:42:21 +0100 Subject: [PATCH] deleted some useless end-of-line ';' (#1478) --- .../QEDInternals/BreitWheelerEngineWrapper.H | 6 +++--- .../QEDInternals/QuantumSyncEngineWrapper.H | 6 +++--- Source/Particles/WarpXParticleContainer.H | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.H b/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.H index a73e2e17f45..bf305db1c96 100644 --- a/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.H +++ b/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerEngineWrapper.H @@ -70,7 +70,7 @@ public: * does not require control parameters or lookup tables. */ BreitWheelerGetOpticalDepth () - {}; + {} /** * () operator is just a thin wrapper around a very simple function to @@ -111,7 +111,7 @@ public: BreitWheelerEvolveOpticalDepth ( const BW_dndt_table_view table_view, const amrex::ParticleReal bw_minimum_chi_phot): - m_table_view{table_view}, m_bw_minimum_chi_phot{bw_minimum_chi_phot}{}; + m_table_view{table_view}, m_bw_minimum_chi_phot{bw_minimum_chi_phot}{} /** * Evolves the optical depth. It can be used on GPU. @@ -190,7 +190,7 @@ public: * @param[in] table_view a BW_pair_prod_table_view */ BreitWheelerGeneratePairs (const BW_pair_prod_table_view table_view): - m_table_view{table_view}{}; + m_table_view{table_view}{} /** * Generates pairs according to Breit Wheeler process. diff --git a/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.H b/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.H index ece636aad97..48f79e3e208 100644 --- a/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.H +++ b/Source/Particles/ElementaryProcess/QEDInternals/QuantumSyncEngineWrapper.H @@ -70,7 +70,7 @@ public: * does not require control parameters or lookup tables. */ QuantumSynchrotronGetOpticalDepth () - {}; + {} /** * () operator is just a thin wrapper around a very simple function to @@ -110,7 +110,7 @@ public: QuantumSynchrotronEvolveOpticalDepth ( const QS_dndt_table_view table_view, const amrex::ParticleReal qs_minimum_chi_part): - m_table_view{table_view}, m_qs_minimum_chi_part{qs_minimum_chi_part}{}; + m_table_view{table_view}, m_qs_minimum_chi_part{qs_minimum_chi_part}{} /** * Evolves the optical depth. It can be used on GPU. @@ -184,7 +184,7 @@ public: */ QuantumSynchrotronPhotonEmission ( const QS_phot_em_table_view table_view): - m_table_view{table_view}{}; + m_table_view{table_view}{} /** * Generates photons according to Quantum Synchrotron process. diff --git a/Source/Particles/WarpXParticleContainer.H b/Source/Particles/WarpXParticleContainer.H index 2f22c78f1cc..d2c1f380e85 100644 --- a/Source/Particles/WarpXParticleContainer.H +++ b/Source/Particles/WarpXParticleContainer.H @@ -396,9 +396,9 @@ protected: //Species can receive a shared pointer to a QED engine (species for //which this is relevant should override these functions) virtual void - set_breit_wheeler_engine_ptr(std::shared_ptr){}; + set_breit_wheeler_engine_ptr(std::shared_ptr){} virtual void - set_quantum_sync_engine_ptr(std::shared_ptr){}; + set_quantum_sync_engine_ptr(std::shared_ptr){} int m_qed_breit_wheeler_ele_product; std::string m_qed_breit_wheeler_ele_product_name;