From 26dd1a64d3de7e56b36e612d96c55f84ef327b86 Mon Sep 17 00:00:00 2001 From: Emile Cormier Date: Thu, 30 Jul 2015 16:03:50 -0300 Subject: [PATCH] Updated Examples and Recipes (markdown) --- Examples-and-Recipes.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Examples-and-Recipes.md b/Examples-and-Recipes.md index efd3c9f..3916664 100644 --- a/Examples-and-Recipes.md +++ b/Examples-and-Recipes.md @@ -13,7 +13,8 @@ using namespace std::chrono; using namespace date; // Component values (as obtained from an UI form, for example) int y=2015, m=7, d=30, h=12, min=34, s=56; -system_clock::time_point = day_point(year(y)/m/d) + hours(h) + minutes(min) + seconds(s); +system_clock::time_point = day_point(year(y)/m/d) + + hours(h) + minutes(min) + seconds(s); ```