libs/temporal/temporal/types.h: fix confusing indentation

This commit is contained in:
Mads Kiilerich 2022-05-16 17:29:59 +02:00 committed by Paul Davis
parent cc6a1e2d6f
commit aadd24a4e5
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class _ratio_t {
int64_t operator* (int64_t v) const { return int_div_round (v * _numerator, _denominator); }
private:
private:
T _numerator;
T _denominator;
};