aboutsummaryrefslogtreecommitdiffstats
path: root/GSM/GSMCommon.h
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-07-22 12:03:39 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-07-22 12:03:39 +0200
commitbdb970e4957b7d1cf22bc530a81b2b8a2ae9a2ce (patch)
treee462a1dd9e98a9a6c7db54eeb800e47e011b3ce3 /GSM/GSMCommon.h
parente6319ed32ad7e9d0739772d07ff230071c8f7973 (diff)
cosmetic: Fix trailing whitespace in several files
Diffstat (limited to 'GSM/GSMCommon.h')
-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
{