summaryrefslogtreecommitdiffstats
path: root/kjs
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:34 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 23:52:42 +0900
commit41e0f335b5e2ab65cf47191a5b1c32adee2c24c3 (patch)
tree016b50163495e6d8607a1205b4e29179fbf56f8a /kjs
parent9c1e136983b9361291646002b2c6c1f733ee13d4 (diff)
downloadtdelibs-41e0f335b5e2ab65cf47191a5b1c32adee2c24c3.tar.gz
tdelibs-41e0f335b5e2ab65cf47191a5b1c32adee2c24c3.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit aa98dbfe80580169f3df12489a77e8b904a1d9b9)
Diffstat (limited to 'kjs')
-rw-r--r--kjs/dtoa.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kjs/dtoa.cpp b/kjs/dtoa.cpp
index 054450f12..c39fa5bc6 100644
--- a/kjs/dtoa.cpp
+++ b/kjs/dtoa.cpp
@@ -610,9 +610,9 @@ s2b
static int
hi0bits
- (register ULong x)
+ (ULong x)
{
- register int k = 0;
+ int k = 0;
if (!(x & 0xffff0000)) {
k = 16;
@@ -642,8 +642,8 @@ hi0bits
lo0bits
(ULong *y)
{
- register int k;
- register ULong x = *y;
+ int k;
+ ULong x = *y;
if (x & 7) {
if (x & 1)
@@ -1035,7 +1035,7 @@ diff
ulp
(double dx)
{
- register Long L;
+ Long L;
U x, a;
dval(x) = dx;