diff options
| author | Frank Warmerdam <warmerdam@pobox.com> | 2011-02-08 23:22:01 +0000 |
|---|---|---|
| committer | Frank Warmerdam <warmerdam@pobox.com> | 2011-02-08 23:22:01 +0000 |
| commit | 98ea774575d9a21f7a9d975c2aa67fdb548458e2 (patch) | |
| tree | 30d1c913646da536cff8183ae4c1a11c36242710 /src/jniproj.c | |
| parent | 4294bc272cf563b7897c2dfae7a583c7cc45f1e1 (diff) | |
| download | PROJ-98ea774575d9a21f7a9d975c2aa67fdb548458e2.tar.gz PROJ-98ea774575d9a21f7a9d975c2aa67fdb548458e2.zip | |
avoid cplusplus comments (#92)
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@1965 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'src/jniproj.c')
| -rw-r--r-- | src/jniproj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jniproj.c b/src/jniproj.c index 33a4cbf8..ebac726e 100644 --- a/src/jniproj.c +++ b/src/jniproj.c @@ -124,7 +124,7 @@ JNIEXPORT jstring JNICALL Java_org_proj4_Projections_getProjInfo if (!(pj = pj_init_plus(proj_def))) exit(1); - // put together all the info of the projection and free the pointer to pjdesc + /* put together all the info of the projection and free the pointer to pjdesc */ pjdesc = pj_get_def(pj, 0); strcpy(info,pjdesc); pj_dalloc(pjdesc); @@ -160,7 +160,7 @@ JNIEXPORT jstring JNICALL Java_org_proj4_Projections_getEllipsInfo if (!(pj = pj_init_plus(proj_def))) exit(1); - // put together all the info of the ellipsoid + /* put together all the info of the ellipsoid */ /* sprintf(temp,"name: %s;", pj->descr); */ sprintf(temp,"name: not available;"); strcpy(ellipseinfo,temp); |
