Skip to content

Commit

Permalink
internal linkage
Browse files Browse the repository at this point in the history
  • Loading branch information
cvarni committed Sep 30, 2024
1 parent cce8f6d commit 635737f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ using CellCollection = std::vector<Acts::Test::Cell>;
using ClusterCollection = std::vector<Acts::Test::Cluster>;

// Define functions
inline int getCellRow(const Cell& cell) {
static inline int getCellRow(const Cell& cell) {
return cell.row;
}

inline int getCellColumn(const Cell& cell) {
static inline int getCellColumn(const Cell& cell) {
return cell.column;
}

inline int& getCellLabel(Cell& cell) {
static inline int& getCellLabel(Cell& cell) {
return cell.label;
}

inline double getCellTime(const Cell& cell) {
static inline double getCellTime(const Cell& cell) {
return cell.time;
}

Expand Down

0 comments on commit 635737f

Please sign in to comment.