Skip to content

Commit

Permalink
Removing inline specifiers from implicitly inlined functions to elimi…
Browse files Browse the repository at this point in the history
…nate the warning readability-redundant-inline-specifier
  • Loading branch information
itopcuoglu committed Dec 19, 2024
1 parent f8dfa2d commit 7acc22c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MeshBlock.h
Original file line number Diff line number Diff line change
Expand Up @@ -515,8 +515,8 @@ class MeshBlock
void setCartIblanks();

// Getters
inline int getMeshTag() const { return meshtag + (1 - BASE); }
inline int getWallFlag() const { return static_cast<int>(nwbc > 0); }
int getMeshTag() const { return meshtag + (1 - BASE); }
int getWallFlag() const { return static_cast<int>(nwbc > 0); }

/**
* Get donor packet for multi-block/partition setups
Expand Down

0 comments on commit 7acc22c

Please sign in to comment.