Revert "externals: Update boost to 1.72 and add Boost Context"

This commit is contained in:
bunnei 2020-02-22 00:33:06 -05:00 committed by GitHub
parent 8b4b26a2fd
commit faaf93d90b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
618 changed files with 14262 additions and 96298 deletions

View file

@ -164,7 +164,7 @@ namespace date_time {
}
time_type operator+=(const time_duration_type& td)
{
time_ = time_system::add_time_duration(time_,td);
time_ = (time_system::get_time_rep(date(), time_of_day() + td));
return time_type(time_);
}
//! subtract time durations
@ -174,7 +174,7 @@ namespace date_time {
}
time_type operator-=(const time_duration_type& td)
{
time_ = time_system::subtract_time_duration(time_, td);
time_ = (time_system::get_time_rep(date(), time_of_day() - td));
return time_type(time_);
}