From 156e0a786efb7dd13f838932d4c9c72092fbeaec Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Wed, 7 Apr 2021 20:33:01 -0400 Subject: [PATCH] Fix up namespace error in Posix::time_zone::to_sys --- include/date/ptz.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/date/ptz.h b/include/date/ptz.h index dc8f0cf..bdb00b0 100644 --- a/include/date/ptz.h +++ b/include/date/ptz.h @@ -460,6 +460,7 @@ time_zone::to_sys(date::local_time tp) const using date::local_info; using date::sys_time; using date::ambiguous_local_time; + using date::nonexistent_local_time; auto i = get_info(tp); if (i.result == local_info::nonexistent) throw nonexistent_local_time(tp, i);