summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 23:52:59 +0900
commita8d88c3ebb2570b1de36ca9392b180a628623be0 (patch)
tree26adf1fc3c195475f48c6de1c8740975f649cc31 /common
parent85364a842a62d00b1a64c41e56268b94af516fd8 (diff)
downloadtde-style-qtcurve-a8d88c3ebb2570b1de36ca9392b180a628623be0.tar.gz
tde-style-qtcurve-a8d88c3ebb2570b1de36ca9392b180a628623be0.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 74f3c1de12a68cb4533910a4a6e3579e5a657ddb)
Diffstat (limited to 'common')
-rw-r--r--common/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/common.h b/common/common.h
index 88dfb40..34d8345 100644
--- a/common/common.h
+++ b/common/common.h
@@ -1272,7 +1272,7 @@ static inline double mix(double a, double b, double k)
static inline double wrap(double a, double d)
{
- register double r = fmod( a, d );
+ double r = fmod( a, d );
return ( r < 0.0 ? d + r : ( r > 0.0 ? r : 0.0 ) );
}