File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
tests/std/tests/P0355R7_calendars_and_time_zones_formatting Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6011,7 +6011,7 @@ namespace chrono {
6011
6011
template <class _Duration>
6012
6012
_NODISCARD string ambiguous_local_time::_Make_string(const local_time<_Duration>& _Tp, const local_info& _Info) {
6013
6013
ostringstream _Os;
6014
- _Os << _Tp << " is ambiguous. It could be\n"
6014
+ _Os << _Tp << " is ambiguous. It could be\n"
6015
6015
<< _Tp << ' ' << _Info.first.abbrev << " == " << _Tp - _Info.first.offset << " UTC or\n"
6016
6016
<< _Tp << ' ' << _Info.second.abbrev << " == " << _Tp - _Info.second.offset << " UTC";
6017
6017
return _STD move(_Os).str();
Original file line number Diff line number Diff line change @@ -798,11 +798,11 @@ void test_exception_classes() {
798
798
}
799
799
800
800
assert (s
801
- == " 2016-11-06 01:30:00 is ambiguous. It could be\n "
801
+ == " 2016-11-06 01:30:00 is ambiguous. It could be\n "
802
802
" 2016-11-06 01:30:00 EDT == 2016-11-06 05:30:00 UTC or\n "
803
803
" 2016-11-06 01:30:00 EST == 2016-11-06 06:30:00 UTC"
804
804
|| s
805
- == " 2016-11-06 01:30:00 is ambiguous. It could be\n "
805
+ == " 2016-11-06 01:30:00 is ambiguous. It could be\n "
806
806
" 2016-11-06 01:30:00 GMT-4 == 2016-11-06 05:30:00 UTC or\n "
807
807
" 2016-11-06 01:30:00 GMT-5 == 2016-11-06 06:30:00 UTC" );
808
808
}
You can’t perform that action at this time.
0 commit comments