Skip to content

Commit

Permalink
MultiFabRegister Leftover Clang-Tidy
Browse files Browse the repository at this point in the history
Fix leftover clang-tidy recommendations.
  • Loading branch information
ax3l committed Sep 24, 2024
1 parent 086b0a3 commit 16354e3
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Source/ablastr/fields/MultiFabRegister.H
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ namespace ablastr::fields
) const;

private:
amrex::MultiFab *
[[nodiscard]] amrex::MultiFab *
internal_get (
std::string const & key
);
Expand Down Expand Up @@ -730,54 +730,54 @@ namespace ablastr::fields
int level
) const;

amrex::MultiFab *
[[nodiscard]] amrex::MultiFab *
internal_get (
std::string const & name,
int level
);
amrex::MultiFab const *
[[nodiscard]] amrex::MultiFab const *
internal_get (
std::string const & name,
int level
) const;
amrex::MultiFab *
[[nodiscard]] amrex::MultiFab *
internal_get (
std::string const & name,
Direction dir,
int level
);
amrex::MultiFab const *
[[nodiscard]] amrex::MultiFab const *
internal_get (
std::string const & name,
Direction dir,
int level
) const;
MultiLevelScalarField
[[nodiscard]] MultiLevelScalarField
internal_get_mr_levels (
std::string const & name,
int finest_level
);
ConstMultiLevelScalarField
[[nodiscard]] ConstMultiLevelScalarField
internal_get_mr_levels (
std::string const & name,
int finest_level
) const;
VectorField
[[nodiscard]] VectorField
internal_get_alldirs (
std::string const & name,
int level
);
ConstVectorField
[[nodiscard]] ConstVectorField
internal_get_alldirs (
std::string const & name,
int level
) const;
MultiLevelVectorField
[[nodiscard]] MultiLevelVectorField
internal_get_mr_levels_alldirs (
std::string const & name,
int finest_level
);
ConstMultiLevelVectorField
[[nodiscard]] ConstMultiLevelVectorField
internal_get_mr_levels_alldirs (
std::string const & name,
int finest_level
Expand Down

0 comments on commit 16354e3

Please sign in to comment.