From 7dba843cb49a2c2ed1c4126363c683cbe43f6d85 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 31 Aug 2021 22:33:33 -0600 Subject: [PATCH] temporal: fix error in operator>> for BBT_offset --- libs/temporal/bbt_time.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/temporal/bbt_time.cc b/libs/temporal/bbt_time.cc index 3ddad50b79..f0a359d580 100644 --- a/libs/temporal/bbt_time.cc +++ b/libs/temporal/bbt_time.cc @@ -63,7 +63,7 @@ std::operator>>(std::istream& i, Temporal::BBT_Offset& bbt) i >> skip_pipe_char; i >> t; - bbt = Temporal::BBT_Time (B, b, t); + bbt = Temporal::BBT_Offset (B, b, t); return i; }