From 95caec68ef608fc352e4b548cf2b2938f903ecb0 Mon Sep 17 00:00:00 2001 From: Emile Cormier Date: Thu, 30 Jul 2015 16:29:20 -0300 Subject: [PATCH] "Signed" my examples --- Examples-and-Recipes.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Examples-and-Recipes.md b/Examples-and-Recipes.md index 88b40b6..a70e0ca 100644 --- a/Examples-and-Recipes.md +++ b/Examples-and-Recipes.md @@ -1,3 +1,5 @@ +This page contains examples and recipes contributed by community members. + ##Contents - [Obtaining a `time_point` from `y/m/d h:m:s` components](#time_point_to_components) - [Obtaining `y/m/d h:m:s` components from a `time_point`](#components_to_time_point) @@ -6,6 +8,8 @@ ### Obtaining a `time_point` from `y/m/d h:m:s` components +(by [ecorm](https://github.com/ecorm)) + See http://stackoverflow.com/questions/31711782. ```c++ @@ -22,6 +26,7 @@ system_clock::time_point = day_point(ymd) + ### Obtaining `y/m/d h:m:s` components from a `time_point` +(by [ecorm](https://github.com/ecorm)) ```c++ using namespace date;