diff --git a/iso_week.h b/iso_week.h index 45c326d..0f010e5 100644 --- a/iso_week.h +++ b/iso_week.h @@ -818,8 +818,8 @@ inline weeks operator-(const weeknum& x, const weeknum& y) NOEXCEPT { - return weeks{static_cast(static_cast(x) - - static_cast(y))}; + return weeks{static_cast(static_cast(x)) - + static_cast(static_cast(y))}; } CONSTCD11