aboutsummaryrefslogtreecommitdiffstats
path: root/GSM
diff options
context:
space:
mode:
Diffstat (limited to 'GSM')
-rw-r--r--GSM/GSMCommon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/GSM/GSMCommon.h b/GSM/GSMCommon.h
index f703c30..a3ada26 100644
--- a/GSM/GSMCommon.h
+++ b/GSM/GSMCommon.h
@@ -166,7 +166,7 @@ class Time {
unsigned newTN = (mTN + other.mTN) % 8;
uint64_t newFN = (mFN+other.mFN + (mTN + other.mTN)/8) % gHyperframe;
return Time(newFN,newTN);
- }
+ }
int operator-(const Time& other) const
{