|
78 | 78 | //
|
79 | 79 | // will result in the token foo__LINE__, instead of foo followed by
|
80 | 80 | // the current line number. For more details, see
|
81 |
| -// http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6 |
| 81 | +// https://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.6 |
82 | 82 | #define GTEST_CONCAT_TOKEN_(foo, bar) GTEST_CONCAT_TOKEN_IMPL_(foo, bar)
|
83 | 83 | #define GTEST_CONCAT_TOKEN_IMPL_(foo, bar) foo##bar
|
84 | 84 |
|
@@ -169,7 +169,7 @@ namespace edit_distance {
|
169 | 169 | // All edits cost the same, with replace having lower priority than
|
170 | 170 | // add/remove.
|
171 | 171 | // Simple implementation of the Wagner-Fischer algorithm.
|
172 |
| -// See http://en.wikipedia.org/wiki/Wagner-Fischer_algorithm |
| 172 | +// See https://en.wikipedia.org/wiki/Wagner-Fischer_algorithm |
173 | 173 | enum EditType { kMatch, kAdd, kRemove, kReplace };
|
174 | 174 | GTEST_API_ std::vector<EditType> CalculateOptimalEdits(
|
175 | 175 | const std::vector<size_t>& left, const std::vector<size_t>& right);
|
@@ -236,7 +236,7 @@ GTEST_API_ std::string GetBoolAssertionFailureMessage(
|
236 | 236 | // For double, there are 11 exponent bits and 52 fraction bits.
|
237 | 237 | //
|
238 | 238 | // More details can be found at
|
239 |
| -// http://en.wikipedia.org/wiki/IEEE_floating-point_standard. |
| 239 | +// https://en.wikipedia.org/wiki/IEEE_floating-point_standard. |
240 | 240 | //
|
241 | 241 | // Template parameter:
|
242 | 242 | //
|
@@ -281,7 +281,7 @@ class FloatingPoint {
|
281 | 281 | // bits. Therefore, 4 should be enough for ordinary use.
|
282 | 282 | //
|
283 | 283 | // See the following article for more details on ULP:
|
284 |
| - // http://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/ |
| 284 | + // https://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/ |
285 | 285 | static const uint32_t kMaxUlps = 4;
|
286 | 286 |
|
287 | 287 | // Constructs a FloatingPoint from a raw floating-point number.
|
@@ -362,7 +362,7 @@ class FloatingPoint {
|
362 | 362 | // N - 1 (the biggest number representable using
|
363 | 363 | // sign-and-magnitude) is represented by 2N - 1.
|
364 | 364 | //
|
365 |
| - // Read http://en.wikipedia.org/wiki/Signed_number_representations |
| 365 | + // Read https://en.wikipedia.org/wiki/Signed_number_representations |
366 | 366 | // for more details on signed number representations.
|
367 | 367 | static Bits SignAndMagnitudeToBiased(const Bits& sam) {
|
368 | 368 | if (kSignBitMask & sam) {
|
|
0 commit comments