From 8211f48b1ac6c941f46a8f2df90bdbfdcbc85981 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Tue, 18 Dec 2018 21:31:28 +0100 Subject: cpp conversion: fix zero-as-null-pointer-constant warnings --- src/PJ_august.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/PJ_august.cpp') diff --git a/src/PJ_august.cpp b/src/PJ_august.cpp index e891e84e..b5a21ef7 100644 --- a/src/PJ_august.cpp +++ b/src/PJ_august.cpp @@ -27,7 +27,7 @@ static XY s_forward (LP lp, PJ *P) { /* Spheroidal, forward */ PJ *PROJECTION(august) { - P->inv = 0; + P->inv = nullptr; P->fwd = s_forward; P->es = 0.; return P; -- cgit v1.2.3