Skip to content

Commit b790bfa

Browse files
authored
fix dentifier preceded by whitespace
1 parent 33fdd83 commit b790bfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DataFormats/Math/interface/GeantUnits.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ namespace geant_units {
4747
constexpr double operator""_GeV(long double energy) { return energy * 1000._MeV; }
4848

4949
// Mass
50-
constexpr double operator"" _kg(long double mass) {
50+
constexpr double operator""_kg(long double mass) {
5151
return mass * (1._eV / 1.602176487e-19) * 1._s * 1._s / (1._m * 1._m);
5252
}
5353
constexpr double operator""_g(long double mass) { return mass * 1.e-3_kg; }

0 commit comments

Comments
 (0)