aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Toews <mwtoews@gmail.com>2018-06-02 19:49:34 +1200
committerMike Toews <mwtoews@gmail.com>2018-06-02 19:51:25 +1200
commitabf44ad4154dc3ffd1be2090e2f5c8e07bf35528 (patch)
tree0db2a158010e715082b80253d32c361618114098
parent347fdaa1e6c75da039ac9b93b6ef7b7197efaa67 (diff)
downloadPROJ-abf44ad4154dc3ffd1be2090e2f5c8e07bf35528.tar.gz
PROJ-abf44ad4154dc3ffd1be2090e2f5c8e07bf35528.zip
use shortened URL from StackExchange websites
-rw-r--r--m4/ax_cxx_compile_stdcxx.m42
-rw-r--r--src/PJ_cart.c4
-rw-r--r--test/catch.hpp4
3 files changed, 5 insertions, 5 deletions
diff --git a/m4/ax_cxx_compile_stdcxx.m4 b/m4/ax_cxx_compile_stdcxx.m4
index 2c18e49c..1bff58a5 100644
--- a/m4/ax_cxx_compile_stdcxx.m4
+++ b/m4/ax_cxx_compile_stdcxx.m4
@@ -408,7 +408,7 @@ namespace cxx11
}
- // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae
+ // https://stackoverflow.com/q/13728184
// Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function
// because of this.
namespace test_template_alias_sfinae
diff --git a/src/PJ_cart.c b/src/PJ_cart.c
index b4fc60b2..6fed9985 100644
--- a/src/PJ_cart.c
+++ b/src/PJ_cart.c
@@ -64,7 +64,7 @@ PROJ_HEAD(cart, "Geodetic/cartesian conversions");
and
Wikipedia: Geographic Coordinate Conversion,
- https://en.m.wikipedia.org/wiki/Geographic_coordinate_conversion
+ https://en.wikipedia.org/wiki/Geographic_coordinate_conversion
(WP, below).
@@ -94,7 +94,7 @@ PROJ_HEAD(cart, "Geodetic/cartesian conversions");
Wikipedia: Earth Radius
https://en.wikipedia.org/wiki/Earth_radius#Radius_at_a_given_geodetic_latitude
- (Derivation and commentary at http://gis.stackexchange.com/questions/20200/how-do-you-compute-the-earths-radius-at-a-given-geodetic-latitude)
+ (Derivation and commentary at https://gis.stackexchange.com/q/20200)
(WP2, below)
diff --git a/test/catch.hpp b/test/catch.hpp
index 1621c044..312f9e4d 100644
--- a/test/catch.hpp
+++ b/test/catch.hpp
@@ -169,7 +169,7 @@ namespace Catch {
#ifdef __CYGWIN__
// Required for some versions of Cygwin to declare gettimeofday
-// see: http://stackoverflow.com/questions/36901803/gettimeofday-not-declared-in-this-scope-cygwin
+// see: https://stackoverflow.com/a/36902237
# define _BSD_SOURCE
#endif // __CYGWIN__
@@ -11038,7 +11038,7 @@ namespace {
// Check for control characters and invalid utf-8
// Escape control characters in standard ascii
- // see http://stackoverflow.com/questions/404107/why-are-control-characters-illegal-in-xml-1-0
+ // see https://stackoverflow.com/q/404107
if (c < 0x09 || (c > 0x0D && c < 0x20) || c == 0x7F) {
hexEscapeChar(os, c);
break;