diff options
Diffstat (limited to 'src/time/Convert.hxx')
-rw-r--r-- | src/time/Convert.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/time/Convert.hxx b/src/time/Convert.hxx index 558bd2e37..835d804a1 100644 --- a/src/time/Convert.hxx +++ b/src/time/Convert.hxx @@ -39,12 +39,16 @@ /** * Convert a UTC-based time point to a UTC-based "struct tm". + * + * Throws on error. */ struct tm GmTime(std::chrono::system_clock::time_point tp); /** * Convert a UTC-based time point to a local "struct tm". + * + * Throws on error. */ struct tm LocalTime(std::chrono::system_clock::time_point tp); |