diff --git a/Boost-datetime-Examples-Translated.md b/Boost-datetime-Examples-Translated.md index 164fe6d..e5a12c5 100644 --- a/Boost-datetime-Examples-Translated.md +++ b/Boost-datetime-Examples-Translated.md @@ -482,7 +482,7 @@ main() ### Flight Time Example ```c++ -#include "tz.h" +#include "date/tz.h" #include int @@ -497,11 +497,11 @@ main() // local departure time in phoenix is 11 pm on March 30 2005 // (ny changes to dst on apr 3 at 2 am) - auto phx_departure = make_zoned(phx_tz, local_days{2005_y/mar/30} + 23h); + zoned_seconds phx_departure{phx_tz, local_days{2005_y/March/30} + 23h}; // flight is 4 hours, 30 minutes - auto phx_arrival = make_zoned(phx_tz, phx_departure.get_sys_time() + 4h + 30min); - auto nyc_arrival = make_zoned(nyc_tz, phx_arrival); + zoned_seconds phx_arrival{phx_tz, phx_departure.get_sys_time() + 4h + 30min}; + zoned_seconds nyc_arrival{nyc_tz, phx_arrival}; std::cout << "departure phx time: " << phx_departure << '\n'; std::cout << "arrival phx time: " << phx_arrival << '\n'; @@ -510,9 +510,9 @@ main() // Output: // -// departure phx time: 2005-03-30 23:00 -// arrival phx time: 2005-03-31 03:30 MST -// arrival nyc time: 2005-03-31 05:30 EST +// departure phx time: 2005-03-30 23:00:00 MST +// arrival phx time: 2005-03-31 03:30:00 MST +// arrival nyc time: 2005-03-31 05:30:00 EST // // Note that boost states a nyc_arrival time of 2005-Mar-31 06:30:00 EDT // because boost uses the current US daylightsavings rules as opposed to