aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Chemeris <Alexander.Chemeris@gmail.com>2015-07-11 12:37:12 -0400
committerAlexander Chemeris <Alexander.Chemeris@gmail.com>2015-07-11 12:37:12 -0400
commit79dae630c73287c9ac07c130c9ab1d425e6c8c37 (patch)
tree5b9286ed9262911015b6844a1be7e3d552bfd470
parentc8b9aced8cc7ef16e6cbba2ed929091441fd94dd (diff)
GSM: Fix whitespaces.
-rw-r--r--GSM/GSMCommon.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/GSM/GSMCommon.h b/GSM/GSMCommon.h
index e255be3..7f4e2e5 100644
--- a/GSM/GSMCommon.h
+++ b/GSM/GSMCommon.h
@@ -114,16 +114,16 @@ class Time {
return *this;
}
- Time& decTN(unsigned step=1)
- {
+ Time& decTN(unsigned step=1)
+ {
mTN -= step;
while (mTN<0) {
mTN+=8;
mFN-=1;
if (mFN<0) mFN+=gHyperframe;
}
- return *this;
- }
+ return *this;
+ }
Time& incTN(unsigned step=1)
{