diff options
| author | Alan D. Snow <alansnow21@gmail.com> | 2020-10-19 10:20:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-19 17:20:27 +0200 |
| commit | 084f5f6cb39b3732c4cd930ebffcff86cdb24932 (patch) | |
| tree | b6e3d9bd87eecafbfe0f6f2634c4db9d00bc8e05 /src/4D_api.cpp | |
| parent | 85137d93549f2bb3dfe4fcfd371a0f1925e26417 (diff) | |
| download | PROJ-084f5f6cb39b3732c4cd930ebffcff86cdb24932.tar.gz PROJ-084f5f6cb39b3732c4cd930ebffcff86cdb24932.zip | |
C API: add proj_context_clone() (#2383)
Fixes #2382
Diffstat (limited to 'src/4D_api.cpp')
| -rw-r--r-- | src/4D_api.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/4D_api.cpp b/src/4D_api.cpp index 3c6ab802..0c26840d 100644 --- a/src/4D_api.cpp +++ b/src/4D_api.cpp @@ -1448,7 +1448,7 @@ int proj_errno_reset (const PJ *P) { } -/* Create a new context */ +/* Create a new context based on the default context */ PJ_CONTEXT *proj_context_create (void) { return pj_ctx_alloc (); } |
