File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ namespace influxdb::internal
39
39
{
40
40
std::istringstream timeString{value};
41
41
std::chrono::system_clock::time_point timeStamp;
42
- timeString >> date ::parse (" %FT%T%Z" , timeStamp);
42
+ timeString >> std::chrono ::parse (" %FT%T%Z" , timeStamp);
43
43
return timeStamp;
44
44
}
45
45
}
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ namespace influxdb::test
112
112
113
113
std::istringstream in{" 2021-01-01T00:11:22.123456789Z" };
114
114
std::chrono::system_clock::time_point expectedTimeStamp{};
115
- in >> date ::parse (" %FT%T%Z" , expectedTimeStamp);
115
+ in >> std::chrono ::parse (" %FT%T%Z" , expectedTimeStamp);
116
116
117
117
TransportMock transport;
118
118
ALLOW_CALL (transport, query (_))
You can’t perform that action at this time.
0 commit comments