diff options
author | San Jacobs | 2022-08-07 08:13:49 +0200 |
---|---|---|
committer | San Jacobs | 2022-08-07 08:13:49 +0200 |
commit | 8d8848e882aaf8ed92a9e919505f478ff1f5ce05 (patch) | |
tree | 64521a9b8db3eda847d729edbcabb1785e632909 /src/time.h | |
parent | f850a8e5b64f7018f594b8aa36511caeab00d929 (diff) | |
download | satscalc-8d8848e882aaf8ed92a9e919505f478ff1f5ce05.tar.gz satscalc-8d8848e882aaf8ed92a9e919505f478ff1f5ce05.tar.bz2 satscalc-8d8848e882aaf8ed92a9e919505f478ff1f5ce05.zip |
Fixed windows-only out_of_range crash
Diffstat (limited to 'src/time.h')
-rwxr-xr-x | src/time.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -98,7 +98,7 @@ std::string timeprint(const moment input_moment); std::string timeprint(const moment input_moment, bool clockonly); std::string timeprint(const timeblock input_timeblock); std::string timeprint(const timeblock input_timeblock, bool clockonly); -long sortable_time(const timeblock input_timeblock); +long long sortable_time(const timeblock input_timeblock); moment timeinput(moment input_moment); moment timeinput(); |