diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2021-04-20 20:53:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-20 20:53:39 +0200 |
| commit | 81899cee1197e7bbd4558e9c7208eff8293789b5 (patch) | |
| tree | 1d228c795e814f21cc54e16de41cd66d727d0c28 /test/unit/gie_self_tests.cpp | |
| parent | 8d0c7cef4b5e9687382519400380847587edc6cb (diff) | |
| parent | 11b422cbc7c58072f920a29535e172f9eabe0e8b (diff) | |
| download | PROJ-81899cee1197e7bbd4558e9c7208eff8293789b5.tar.gz PROJ-81899cee1197e7bbd4558e9c7208eff8293789b5.zip | |
Merge pull request #2680 from jjimenezshaw/run-clang-format
run reformat_cpp.sh to fix some leftovers
Diffstat (limited to 'test/unit/gie_self_tests.cpp')
| -rw-r--r-- | test/unit/gie_self_tests.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/gie_self_tests.cpp b/test/unit/gie_self_tests.cpp index 59b78497..c7c1ddf5 100644 --- a/test/unit/gie_self_tests.cpp +++ b/test/unit/gie_self_tests.cpp @@ -809,14 +809,14 @@ TEST(gie, proj_create_crs_to_crs_with_area_large) { // Test bugfix for https://github.com/OSGeo/gdal/issues/3695 auto area = proj_area_create(); proj_area_set_bbox(area, -14.1324, 49.5614, 3.76488, 62.1463); - auto P = proj_create_crs_to_crs(PJ_DEFAULT_CTX, "EPSG:4277", "EPSG:4326", - area); + auto P = + proj_create_crs_to_crs(PJ_DEFAULT_CTX, "EPSG:4277", "EPSG:4326", area); proj_area_destroy(area); ASSERT_TRUE(P != nullptr); PJ_COORD c; c.xyzt.x = 50; // Lat in deg - c.xyzt.y = -2; // Long in deg + c.xyzt.y = -2; // Long in deg c.xyzt.z = 0; c.xyzt.t = HUGE_VAL; c = proj_trans(P, PJ_FWD, c); |
