Skip to content

Commit

Permalink
propagation: Fix clang-tidy readability-static-definition-in-anonymou…
Browse files Browse the repository at this point in the history
…s-namespace warning
  • Loading branch information
edalm committed May 27, 2024
1 parent 06a0874 commit 898bf57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/propagation/model/three-gpp-propagation-loss-model.cc
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ ComputeClutterLoss(double freq,
return loss;
};

static const double M_C = 3.0e8; //!< propagation velocity in free space
constexpr double M_C = 3.0e8; //!< propagation velocity in free space

} // namespace

Expand Down

0 comments on commit 898bf57

Please sign in to comment.