Skip to content

Commit c8afb1d

Browse files
committed
Use HTTPS for Wikimedia query-help links
1 parent 20f36e0 commit c8afb1d

85 files changed

Lines changed: 98 additions & 98 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

cpp/ql/src/Best Practices/Exceptions/CatchingByValue.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ void good() {
4343
<li>C++ FAQ: <a href="https://isocpp.org/wiki/faq/exceptions#what-to-throw">
4444
What should I throw?</a>, <a href="https://isocpp.org/wiki/faq/exceptions#what-to-catch">
4545
What should I catch?</a>.</li>
46-
<li>Wikibooks: <a href="http://en.wikibooks.org/wiki/C%2B%2B_Programming/Exception_Handling#Throwing_objects">
46+
<li>Wikibooks: <a href="https://en.wikibooks.org/wiki/C%2B%2B_Programming/Exception_Handling#Throwing_objects">
4747
Throwing objects</a>.</li>
4848

4949

cpp/ql/src/Best Practices/Exceptions/ThrowingPointers.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ void good() {
3636
<li>C++ FAQ: <a href="https://isocpp.org/wiki/faq/exceptions#what-to-throw">
3737
What should I throw?</a>, <a href="https://isocpp.org/wiki/faq/exceptions#what-to-catch">
3838
What should I catch?</a>.</li>
39-
<li>Wikibooks: <a href="http://en.wikibooks.org/wiki/C%2B%2B_Programming/Exception_Handling#Throwing_objects">
39+
<li>Wikibooks: <a href="https://en.wikibooks.org/wiki/C%2B%2B_Programming/Exception_Handling#Throwing_objects">
4040
Throwing objects</a>.</li>
4141

4242

cpp/ql/src/Best Practices/Likely Errors/OffsetUseBeforeRangeCheck.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<li>cplusplus.com: <a href="http://www.cplusplus.com/reference/array/array/">
2323
C++: array</a>.</li>
24-
<li>Wikipedia: <a href="http://en.wikipedia.org/wiki/Bounds_checking">
24+
<li>Wikipedia: <a href="https://en.wikipedia.org/wiki/Bounds_checking">
2525
Bounds checking</a>.</li>
2626

2727

cpp/ql/src/Best Practices/Likely Errors/Slicing.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ These assignments slice off all the fields added by the derived type, and can ca
2020
<references>
2121

2222
<li>
23-
Wikipedia: <a href="http://en.wikipedia.org/wiki/Object_slicing">Object slicing</a>.
23+
Wikipedia: <a href="https://en.wikipedia.org/wiki/Object_slicing">Object slicing</a>.
2424
</li>
2525
<li>
2626
DevX.com: <a href="http://www.devx.com/tips/Tip/14570">Slicing in C++</a>.

cpp/ql/src/Best Practices/Magic Constants/MagicConstantsNumbers.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ then replace all the relevant occurrences in the code.</p>
3535
<references>
3636

3737
<li>
38-
<a href="http://en.wikipedia.org/wiki/Magic_number_%28programming%29#Unnamed_numerical_constants">Magic number (Wikipedia)</a>
38+
<a href="https://en.wikipedia.org/wiki/Magic_number_%28programming%29#Unnamed_numerical_constants">Magic number (Wikipedia)</a>
3939
</li>
4040
<li>
4141
Mats Henricson and Erik Nyquist, <i>Industrial Strength C++</i>, published by Prentice Hall PTR (1997).

cpp/ql/src/Best Practices/Magic Constants/MagicConstantsString.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ constant.</p>
3434

3535

3636
<li>
37-
<a href="http://en.wikipedia.org/wiki/Magic_string">Magic string (Wikipedia)</a>
37+
<a href="https://en.wikipedia.org/wiki/Magic_string">Magic string (Wikipedia)</a>
3838
</li>
3939
<li>
4040
Mats Henricson and Erik Nyquist, <i>Industrial Strength C++</i>, published by Prentice Hall PTR (1997).

cpp/ql/src/Best Practices/RuleOfThree.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
</recommendation>
1616

1717
<references>
18-
<li>Wikipedia: <a href="http://en.wikipedia.org/wiki/Rule_of_three_(C%2B%2B_programming)">Rule of three (C++ programming)</a></li>
18+
<li>Wikipedia: <a href="https://en.wikipedia.org/wiki/Rule_of_three_(C%2B%2B_programming)">Rule of three (C++ programming)</a></li>
1919
</references>
2020
</qhelp>

cpp/ql/src/Best Practices/RuleOfTwo.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ should never be called.
3838
<references>
3939

4040
<li>
41-
<a href="http://en.wikipedia.org/wiki/Rule_of_three_(C%2B%2B_programming)">Rule of Three [Wikipedia]</a>
41+
<a href="https://en.wikipedia.org/wiki/Rule_of_three_(C%2B%2B_programming)">Rule of Three [Wikipedia]</a>
4242
</li>
4343
<li>
4444
<a href="http://www.artima.com/cppsource/bigtwo.html">The Law of The Big Two</a>

cpp/ql/src/Documentation/DocumentApi.qhelp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ Add comments to document the purpose of the function. In particular, ensure that
2222
<references>
2323

2424
<li>
25-
C++ Programming Wikibook: <a href="http://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">Comments</a>
25+
C++ Programming Wikibook: <a href="https://en.wikibooks.org/wiki/C%2B%2B_Programming/Programming_Languages/C%2B%2B/Code/Style_Conventions#Comments">Comments</a>
2626
</li>
2727
<li>
28-
Wikipedia: <a href="http://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Need for comments</a>
28+
Wikipedia: <a href="https://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Need_for_comments">Need for comments</a>
2929
</li>
3030

3131

cpp/ql/src/Documentation/FixmeComments.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Fix the functionality indicated by the comment. If the comment no longer applies
2525
<references>
2626

2727
<li>
28-
<a href="http://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Tags">Wikipedia: Comment tags</a>
28+
<a href="https://en.wikipedia.org/wiki/Comment_%28computer_programming%29#Tags">Wikipedia: Comment tags</a>
2929
</li>
3030
<li>
3131
<a href="http://wordaligned.org/articles/todo">The case against TODO (and FIXME)</a>

0 commit comments

Comments
 (0)