aboutsummaryrefslogtreecommitdiff
path: root/src/time.h
diff options
context:
space:
mode:
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);