aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMike Toews <mwtoews@gmail.com>2018-06-02 19:37:23 +1200
committerMike Toews <mwtoews@gmail.com>2018-06-02 19:40:46 +1200
commit152f34f98de9264eeb2ba92cd36e6c196b12ff8d (patch)
treeda21658b9282562ac1d4ee0531ff7607c7015f71 /test
parent524a335e0b80cf4ba8c68bf72321405a2803fca4 (diff)
downloadPROJ-152f34f98de9264eeb2ba92cd36e6c196b12ff8d.tar.gz
PROJ-152f34f98de9264eeb2ba92cd36e6c196b12ff8d.zip
Upgrade http:// to https:// where feasible
Diffstat (limited to 'test')
-rw-r--r--test/catch.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/catch.hpp b/test/catch.hpp
index ecd8907e..1621c044 100644
--- a/test/catch.hpp
+++ b/test/catch.hpp
@@ -6,7 +6,7 @@
* Copyright (c) 2018 Two Blue Cubes Ltd. All rights reserved.
*
* Distributed under the Boost Software License, Version 1.0. (See accompanying
- * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+ * file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
*/
#ifndef TWOBLUECUBES_SINGLE_INCLUDE_CATCH_HPP_INCLUDED
#define TWOBLUECUBES_SINGLE_INCLUDE_CATCH_HPP_INCLUDED
@@ -5216,7 +5216,7 @@ namespace Catch {
// Copyright 2017 Two Blue Cubes Ltd. All rights reserved.
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
-// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+// file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
//
// See https://github.com/philsquared/Clara for more details
@@ -6893,7 +6893,7 @@ namespace {
// use POSIX/ ANSI console terminal codes
// Thanks to Adam Strzelecki for original contribution
- // (http://github.com/nanoant)
+ // (https://github.com/nanoant)
// https://github.com/philsquared/Catch/pull/131
class PosixColourImpl : public IColourImpl {
public:
@@ -11011,7 +11011,7 @@ namespace {
void XmlEncode::encodeTo( std::ostream& os ) const {
// Apostrophe escaping not necessary if we always use " to write attributes
- // (see: http://www.w3.org/TR/xml/#syntax)
+ // (see: https://www.w3.org/TR/xml/#syntax)
for( std::size_t idx = 0; idx < m_str.size(); ++ idx ) {
uchar c = m_str[idx];
@@ -11020,7 +11020,7 @@ namespace {
case '&': os << "&amp;"; break;
case '>':
- // See: http://www.w3.org/TR/xml/#syntax
+ // See: https://www.w3.org/TR/xml/#syntax
if (idx > 2 && m_str[idx - 1] == ']' && m_str[idx - 2] == ']')
os << "&gt;";
else