From 924e06392e9b365f2ff22b6f44746548493797bb033b4d3419c423fdb6d2b544 Mon Sep 17 00:00:00 2001 From: gzip4 Date: Sat, 22 Feb 2025 13:05:40 +0500 Subject: [PATCH] Rename converter function --- include/fbsqlxx.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fbsqlxx.hpp b/include/fbsqlxx.hpp index f557861..e1d3c25 100644 --- a/include/fbsqlxx.hpp +++ b/include/fbsqlxx.hpp @@ -267,7 +267,7 @@ inline time to_time(ISC_TIME isc_time) return t; } -inline time_tz to_time_tz(ISC_TIME_TZ isc_time) +inline time_tz to_time(ISC_TIME_TZ isc_time) { time t{}; util()->decodeTime(isc_time.utc_time, &t.hours, &t.minutes, &t.seconds, &t.fractions);