aboutsummaryrefslogtreecommitdiff
path: root/src/pj_datum_set.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2018-12-18 21:31:28 +0100
committerEven Rouault <even.rouault@spatialys.com>2018-12-26 10:08:53 +0100
commit8211f48b1ac6c941f46a8f2df90bdbfdcbc85981 (patch)
tree1cd5751c91202070ba3ab6fbbbfbeb7832b980fc /src/pj_datum_set.cpp
parent919dc5ca50839541568ef5c0f18f2156d639beef (diff)
downloadPROJ-8211f48b1ac6c941f46a8f2df90bdbfdcbc85981.tar.gz
PROJ-8211f48b1ac6c941f46a8f2df90bdbfdcbc85981.zip
cpp conversion: fix zero-as-null-pointer-constant warnings
Diffstat (limited to 'src/pj_datum_set.cpp')
-rw-r--r--src/pj_datum_set.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pj_datum_set.cpp b/src/pj_datum_set.cpp
index 466b56c5..c9dfdb80 100644
--- a/src/pj_datum_set.cpp
+++ b/src/pj_datum_set.cpp
@@ -54,7 +54,7 @@ int pj_datum_set(projCtx ctx, paralist *pl, PJ *projdef)
/* definition will last into the pj_ell_set() function called */
/* after this one. */
/* -------------------------------------------------------------------- */
- if( (name = pj_param(ctx, pl,"sdatum").s) != NULL )
+ if( (name = pj_param(ctx, pl,"sdatum").s) != nullptr )
{
paralist *curr;
const char *s;
@@ -96,7 +96,7 @@ int pj_datum_set(projCtx ctx, paralist *pl, PJ *projdef)
/* Check for nadgrids parameter. */
/* -------------------------------------------------------------------- */
nadgrids = pj_param(ctx, pl,"snadgrids").s;
- if( nadgrids != NULL )
+ if( nadgrids != nullptr )
{
/* We don't actually save the value separately. It will continue
to exist int he param list for use in pj_apply_gridshift.c */
@@ -107,7 +107,7 @@ int pj_datum_set(projCtx ctx, paralist *pl, PJ *projdef)
/* -------------------------------------------------------------------- */
/* Check for grid catalog parameter, and optional date. */
/* -------------------------------------------------------------------- */
- else if( (catalog = pj_param(ctx, pl,"scatalog").s) != NULL )
+ else if( (catalog = pj_param(ctx, pl,"scatalog").s) != nullptr )
{
const char *date;
@@ -119,14 +119,14 @@ int pj_datum_set(projCtx ctx, paralist *pl, PJ *projdef)
}
date = pj_param(ctx, pl, "sdate").s;
- if( date != NULL)
+ if( date != nullptr)
projdef->datum_date = pj_gc_parsedate( ctx, date);
}
/* -------------------------------------------------------------------- */
/* Check for towgs84 parameter. */
/* -------------------------------------------------------------------- */
- else if( (towgs84 = pj_param(ctx, pl,"stowgs84").s) != NULL )
+ else if( (towgs84 = pj_param(ctx, pl,"stowgs84").s) != nullptr )
{
int parm_count = 0;
const char *s;