From 8aaf029ab6046eb8cbe600a548d176c1418bd99a Mon Sep 17 00:00:00 2001 From: B Stack Date: Fri, 2 Oct 2020 14:42:30 -0400 Subject: add upstream 11.2 --- zen/format_unit.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'zen/format_unit.h') diff --git a/zen/format_unit.h b/zen/format_unit.h index de5a0811..1c96da51 100644 --- a/zen/format_unit.h +++ b/zen/format_unit.h @@ -24,6 +24,21 @@ std::wstring formatThreeDigitPrecision(double value); //(unless value is too lar std::wstring formatNumber(int64_t n); //format integer number including thousands separator + + +enum class WeekDay +{ + monday, + tuesday, + wednesday, + thursday, + friday, + saturday, + sunday, +}; +WeekDay getFirstDayOfWeek(); + +namespace impl { WeekDay getFirstDayOfWeekImpl(); } //throw SysError } #endif -- cgit