diff options
author | San Jacobs | 2022-08-06 11:55:29 +0200 |
---|---|---|
committer | San Jacobs | 2022-08-06 11:55:29 +0200 |
commit | 969e4465100cc24748f9cd9797beee8e17385f5e (patch) | |
tree | 519e99a1f7dad30cea02f62b1f8282104b3b6d9e /src/time.h | |
parent | 3abe17c2e2a408cc43cbdd0f877a4416b51e3ae4 (diff) | |
download | satscalc-969e4465100cc24748f9cd9797beee8e17385f5e.tar.gz satscalc-969e4465100cc24748f9cd9797beee8e17385f5e.tar.bz2 satscalc-969e4465100cc24748f9cd9797beee8e17385f5e.zip |
Removed std::vector usage, started windows stuff
Diffstat (limited to 'src/time.h')
-rwxr-xr-x | src/time.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,6 @@ #include <ios> #include <iomanip> #include <string.h> -#include <vector> #include <algorithm> enum weekday{ @@ -79,6 +78,7 @@ struct workday{ const moment& calltime, const moment& wraptime, const moment& planned_wraptime); + workday(){}; void lunch(const moment& lunch_start, const moment& lunch_end); }; |