summaryrefslogtreecommitdiffstats
path: root/src/common/time_zone.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-05-13 00:44:07 +0200
committerbunnei <bunneidev@gmail.com>2020-05-13 00:44:07 +0200
commitbba54e1880bd70d634797052d78359e30ec79acd (patch)
tree27d598aa2ad461f0668702d59abb5d61b3ff5bd0 /src/common/time_zone.h
parenthle: service: time_zone_manager: Use current time zone setting. (diff)
downloadyuzu-bba54e1880bd70d634797052d78359e30ec79acd.tar
yuzu-bba54e1880bd70d634797052d78359e30ec79acd.tar.gz
yuzu-bba54e1880bd70d634797052d78359e30ec79acd.tar.bz2
yuzu-bba54e1880bd70d634797052d78359e30ec79acd.tar.lz
yuzu-bba54e1880bd70d634797052d78359e30ec79acd.tar.xz
yuzu-bba54e1880bd70d634797052d78359e30ec79acd.tar.zst
yuzu-bba54e1880bd70d634797052d78359e30ec79acd.zip
Diffstat (limited to 'src/common/time_zone.h')
-rw-r--r--src/common/time_zone.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/time_zone.h b/src/common/time_zone.h
index b7aa1bb10..945daa09c 100644
--- a/src/common/time_zone.h
+++ b/src/common/time_zone.h
@@ -4,6 +4,7 @@
#pragma once
+#include <chrono>
#include <string>
namespace Common::TimeZone {
@@ -12,6 +13,6 @@ namespace Common::TimeZone {
std::string GetDefaultTimeZone();
/// Gets the offset of the current timezone (from the default), in seconds
-int GetCurrentOffsetSeconds();
+std::chrono::seconds GetCurrentOffsetSeconds();
} // namespace Common::TimeZone