Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Cœur <coeur@gmx.fr>2020-02-02 22:31:02 +0300
committeronqtam <vik.kirilov@gmail.com>2020-02-24 20:12:47 +0300
commitf55bdc7fbd657ed3fde31e031cd819f625690e7f (patch)
treeb4f574ba534f3ae2d6f62f4d1c7589210915b0f6 /scripts
parent2f3fd5ec53f63c98bd9b9e5903b22bce55d94074 (diff)
Update links (#331) - http => https
Diffstat (limited to 'scripts')
-rw-r--r--scripts/cmake/common.cmake2
-rw-r--r--scripts/random_dev_notes.md2
-rw-r--r--scripts/send_to_wandbox.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/cmake/common.cmake b/scripts/cmake/common.cmake
index 0ce359f4..8a323ece 100644
--- a/scripts/cmake/common.cmake
+++ b/scripts/cmake/common.cmake
@@ -133,7 +133,7 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
# no way to silence it in the expression decomposition macros: _Pragma() in macros doesn't work for the c++ front-end of g++
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55578
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69543
- # Also the warning is completely worthless nowadays - http://stackoverflow.com/questions/14016993
+ # Also the warning is completely worthless nowadays - https://stackoverflow.com/questions/14016993
#add_compiler_flags(-Waggregate-return)
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0)
diff --git a/scripts/random_dev_notes.md b/scripts/random_dev_notes.md
index ce8e5394..97c1c89f 100644
--- a/scripts/random_dev_notes.md
+++ b/scripts/random_dev_notes.md
@@ -56,7 +56,7 @@ also check if anything should be added here:
https://github.com/martinmoene/catch-lest-other-comparison
== how to deal with pull requests for the main branch instead of the dev branch
-- http://stackoverflow.com/questions/9135913/merge-pull-request-to-a-different-branch-than-default-in-github
+- https://stackoverflow.com/questions/9135913/merge-pull-request-to-a-different-branch-than-default-in-github
- git fetch origin pull/ID/head:BRANCHNAME << BRANCHNAME should be a new local branch! and then rebase it
== other
diff --git a/scripts/send_to_wandbox.py b/scripts/send_to_wandbox.py
index aeacac69..f54faab7 100644
--- a/scripts/send_to_wandbox.py
+++ b/scripts/send_to_wandbox.py
@@ -34,7 +34,7 @@ import urllib2
# Strips C and C++ comments from the given string.
#
-# Copied from http://stackoverflow.com/a/241506/627587.
+# Copied from https://stackoverflow.com/a/241506/627587.
def strip_comments(text):
def replacer(match):
s = match.group(0)