Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Src/Base/AMReX_BLProfiler.H
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ namespace amrex {
static void Sync(const std::string& name) noexcept;
static void Sync(const char* name) noexcept;

static void InitParams() noexcept;
static void InitParams();

static void StartSyncRegion() noexcept;
static void StartSyncRegion(const std::string& name) noexcept;
Expand Down
2 changes: 1 addition & 1 deletion Src/Base/AMReX_BLProfiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1731,7 +1731,7 @@ BLProfileSync::Sync (const char* name) noexcept
}

void
BLProfileSync::InitParams () noexcept
BLProfileSync::InitParams ()
{
ParmParse pParse("amrex");
pParse.queryAdd("use_profiler_syncs", BLProfileSync::use_prof_syncs);
Expand Down
4 changes: 2 additions & 2 deletions Src/Base/AMReX_Geometry.H
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public:
explicit Geometry (const Box& dom,
const RealBox* rb = nullptr,
int coord = -1,
int const* is_per = nullptr) noexcept;
int const* is_per = nullptr);
/**
* Constructs a fully-defined geometry object that describes the problem domain and coordinate system.
*
Expand All @@ -112,7 +112,7 @@ public:
* Default is non-periodic.
*/
Geometry (const Box& dom, const RealBox& rb, int coord,
Array<int,AMREX_SPACEDIM> const& is_per) noexcept;
Array<int,AMREX_SPACEDIM> const& is_per);

~Geometry () = default;
Geometry (const Geometry& rhs) = default;
Expand Down
4 changes: 2 additions & 2 deletions Src/Base/AMReX_Geometry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ Geometry::Geometry () noexcept
}

Geometry::Geometry (const Box& dom, const RealBox* rb, int coord,
int const* is_per) noexcept
int const* is_per)
{
define(dom,rb,coord,is_per);
}

Geometry::Geometry (const Box& dom, const RealBox& rb, int coord,
Array<int,AMREX_SPACEDIM> const& is_per) noexcept
Array<int,AMREX_SPACEDIM> const& is_per)
{
define(dom,rb,coord,is_per);
}
Expand Down
Loading