diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-10-03 15:09:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-03 15:09:00 +0200 |
commit | f8484bb77d6ddf1f5078d804a8abff3d106d6cab (patch) | |
tree | 6437c83af9590d09ac60eead1247d53890ed4565 /core/ustring.cpp | |
parent | c1cee80829f10d32cc23067291321b049af7082d (diff) | |
parent | 60688c3fe71f322fbf30938da47e717f9c3a0fb4 (diff) |
Merge pull request #22672 from akien-mga/fix-warnings
Fix various warnings reported by CI in #22620
Diffstat (limited to 'core/ustring.cpp')
-rw-r--r-- | core/ustring.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index e46896ca85..3f073b181f 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -1828,8 +1828,8 @@ static double built_in_strtod(const C *string, /* A decimal ASCII floating-point int sign, expSign = false; double fraction, dblExp; const double *d; - register const C *p; - register int c; + const C *p; + int c; int exp = 0; /* Exponent read from "EX" field. */ int fracExp = 0; /* Exponent that derives from the fractional * part. Under normal circumstances, it is |