aboutsummaryrefslogtreecommitdiff
path: root/src/pj_strtod.c
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2018-05-29 22:45:18 +0200
committerEven Rouault <even.rouault@spatialys.com>2018-05-30 11:48:28 +0200
commitf773897a3025438326c1131e1586d9ddae080c4f (patch)
tree989e9619ac1f1ad140298bef5327df3f2d417d92 /src/pj_strtod.c
parente692e1567fb6117bd3e1380a80e10b72b7af3710 (diff)
downloadPROJ-f773897a3025438326c1131e1586d9ddae080c4f.tar.gz
PROJ-f773897a3025438326c1131e1586d9ddae080c4f.zip
Fix warnings found by clang with new warning flags to be added in later commit
Fixes consist in: - no use of comma operator for multi statement purpose - avoid confusing comma in for loops first and third clauses - avoid implicit long to int casts by storing to long, or explicit bound checking before cast
Diffstat (limited to 'src/pj_strtod.c')
-rw-r--r--src/pj_strtod.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pj_strtod.c b/src/pj_strtod.c
index 45159d11..f604a013 100644
--- a/src/pj_strtod.c
+++ b/src/pj_strtod.c
@@ -164,7 +164,6 @@ static char* replace_point_by_locale_point(const char* pszNumber, char point,
* @param endptr If is not NULL, a pointer to the character after the last
* character used in the conversion is stored in the location referenced
* by endptr.
- * @param point Decimal delimiter.
*
* @return Converted value.
*/