Commit 2a6629e
1 parent 7e23f4d commit 2a6629e
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
67 | 67 |
| |
68 | 68 |
| |
69 | 69 |
| |
70 |
| - | |
| 70 | + | |
71 | 71 |
| |
72 | 72 |
| |
73 | 73 |
| |
|
1 parent 7e23f4d commit 2a6629e
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
67 | 67 |
| |
68 | 68 |
| |
69 | 69 |
| |
70 |
| - | |
| 70 | + | |
71 | 71 |
| |
72 | 72 |
| |
73 | 73 |
| |
|
4 commit comments
nirvn commentedon Apr 2, 2019
@jef-n , there's also a unused variable build warning for
PJ_INFO info = proj_info();
.jef-n commentedon Apr 2, 2019
should probably be
tr( "PROJ version: %1" ).arg( info.release )
instead oftr( "PROJ version: %1.%2.%3" ).arg( PROJ_VERSION_MAJOR ).arg( PROJ_VERSION_MINOR ).arg( PROJ_VERSION_PATCH )
like in tests/src/core/testqgscoordinatereferencesystem.cpp:127pblottiere commentedon Apr 2, 2019
Compilation is failing here:
You're right @jef-n, the compilation is fixed this way. I'm doing a PR for that.
Thanks!
pblottiere commentedon Apr 2, 2019
@jef-n Argh, I didn't see that your last commit fixed the build, sorry for the noise... But I'll propose a PR with
tr( "PROJ version: %1" ).arg( info.release )
to avoid the warning aboutinfo
.