From bdec11273c894a265ad637fede82c04f6eccc79f Mon Sep 17 00:00:00 2001 From: RobertPiet Date: Fri, 29 Jan 2021 16:11:46 +0100 Subject: [PATCH] [EGD-5317] Unittest for module-db fixed Coding style fixed. --- module-apps/application-calendar/data/dateCommon.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module-apps/application-calendar/data/dateCommon.hpp b/module-apps/application-calendar/data/dateCommon.hpp index e26675a1678f91866b7b40caa1ecfccbddd9b372..f598dabee864cdcc1b04f5826fb924dadd146b8b 100644 --- a/module-apps/application-calendar/data/dateCommon.hpp +++ b/module-apps/application-calendar/data/dateCommon.hpp @@ -182,7 +182,7 @@ inline std::string TimePointToString(const TimePoint &tp, date::months months) inline std::string TimePointToString(const TimePoint &tp, date::years years) { date::year_month_day yearMonthDay = date::year_month_day{date::floor(tp)}; - auto tpHourMinuteSecond = TimePointToHourMinSec(tp).to_duration(); + auto tpHourMinuteSecond = TimePointToHourMinSec(tp).to_duration(); yearMonthDay += years; TimePoint timePoint = date::sys_days{yearMonthDay.year() / yearMonthDay.month() / yearMonthDay.day()};