diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2021-03-04 11:39:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-04 11:39:14 +0100 |
| commit | f278b5bee641dd94245ed54f4eb75e29c3d4d993 (patch) | |
| tree | ec5700b9a252f27670e821da9f821c8bed867052 /src/iso19111/c_api.cpp | |
| parent | 948f39a4da835d9e770ece735d58ac488591bd76 (diff) | |
| parent | 095731d53405309c38bebe31af51d141f6319f1a (diff) | |
| download | PROJ-f278b5bee641dd94245ed54f4eb75e29c3d4d993.tar.gz PROJ-f278b5bee641dd94245ed54f4eb75e29c3d4d993.zip | |
Merge pull request #2551 from rouault/clang_format
Reformat code with clang-format-10 from ubuntu 20.04
Diffstat (limited to 'src/iso19111/c_api.cpp')
| -rw-r--r-- | src/iso19111/c_api.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/iso19111/c_api.cpp b/src/iso19111/c_api.cpp index c3e428d2..0d386e6b 100644 --- a/src/iso19111/c_api.cpp +++ b/src/iso19111/c_api.cpp @@ -8323,9 +8323,10 @@ double proj_dynamic_datum_get_frame_reference_epoch(PJ_CONTEXT *ctx, auto dvrf = dynamic_cast<const DynamicVerticalReferenceFrame *>( datum->iso_obj.get()); if (!dgrf && !dvrf) { - proj_log_error(ctx, __FUNCTION__, "Object is not a " - "DynamicGeodeticReferenceFrame or " - "DynamicVerticalReferenceFrame"); + proj_log_error(ctx, __FUNCTION__, + "Object is not a " + "DynamicGeodeticReferenceFrame or " + "DynamicVerticalReferenceFrame"); return -1; } const auto &frameReferenceEpoch = @@ -8592,9 +8593,10 @@ PJ *proj_normalize_for_visualization(PJ_CONTEXT *ctx, const PJ *obj) { auto co = dynamic_cast<const CoordinateOperation *>(obj->iso_obj.get()); if (!co) { - proj_log_error(ctx, __FUNCTION__, "Object is not a CoordinateOperation " - "created with " - "proj_create_crs_to_crs"); + proj_log_error(ctx, __FUNCTION__, + "Object is not a CoordinateOperation " + "created with " + "proj_create_crs_to_crs"); return nullptr; } try { |
