aboutsummaryrefslogtreecommitdiff
path: root/src/time.h
diff options
context:
space:
mode:
authorSanJacobs2022-08-26 13:20:25 +0200
committerSanJacobs2022-08-26 13:20:25 +0200
commite1005fd4ace41de92fb9d652ce8005cb38e4ec00 (patch)
tree00a6c62fea61cf156bfdd64384b289fb59bc3618 /src/time.h
parentd4488cd88486ae4aaeac20fc7397942c00f0e1bc (diff)
downloadsatscalc-e1005fd4ace41de92fb9d652ce8005cb38e4ec00.tar.gz
satscalc-e1005fd4ace41de92fb9d652ce8005cb38e4ec00.tar.bz2
satscalc-e1005fd4ace41de92fb9d652ce8005cb38e4ec00.zip
Fixed Easter mislocation bug
Diffstat (limited to 'src/time.h')
-rwxr-xr-xsrc/time.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/time.h b/src/time.h
index 8ff5ecf..52562bd 100755
--- a/src/time.h
+++ b/src/time.h
@@ -19,9 +19,9 @@ enum weekday{
};
struct delta{
- signed int minutes;
- signed int hours;
- signed int days;
+ unsigned int minutes;
+ unsigned int hours;
+ unsigned int days;
};
std::ostream& operator<<(std::ostream& stream, const delta& other);