Skip to content

Commit 4112244

Browse files
committed
Also switch http:// to https:// to avoid redirects.
1 parent 9477a04 commit 4112244

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

xml/issue0498.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ The iterator requirements for partition() and stable_partition() [25.2.12]
1616
are listed as BidirectionalIterator, however, there are efficient algorithms
1717
for these functions that only require ForwardIterator that have been known
1818
since before the standard existed. The SGI implementation includes these (see
19-
<a href="http://www.sgi.com/tech/stl/partition.html">http://www.sgi.com/tech/stl/partition.html</a>
19+
<a href="https://www.boost.org/sgi/stl/partition.html">https://www.boost.org/sgi/stl/partition.html</a>
2020
and
21-
<a href="http://www.sgi.com/tech/stl/stable_partition.html">http://www.sgi.com/tech/stl/stable_partition.html</a>).
21+
<a href="https://www.boost.org/sgi/stl/stable_partition.html">https://www.boost.org/sgi/stl/stable_partition.html</a>).
2222
</p>
2323

2424
<note>

xml/issue1213.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ First, issue <iref ref="208"/> intentionally removed the earlier constraint that
4343
values are always non-singular. The reason for this was to support null
4444
pointers as past-the-end iterators of e.g. empty sequences. But there
4545
seem to exist different views on what a singular (iterator) value is. E.g.
46-
according to the <a href="http://www.sgi.com/tech/stl/trivial.html">SGI definition</a>
46+
according to the <a href="https://www.boost.org/sgi/stl/trivial.html">SGI definition</a>
4747
a null pointer is <em>not</em> a singular value:
4848
</p>
4949

@@ -55,7 +55,7 @@ involving null pointers) even thought it is not dereferenceable.
5555
</p></blockquote>
5656

5757
<p>
58-
and <a href="http://www.sgi.com/tech/stl/InputIterator.html">proceeds</a>:
58+
and <a href="https://www.boost.org/sgi/stl/InputIterator.html">proceeds</a>:
5959
</p>
6060

6161
<blockquote><p>

xml/issue1290.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ struct binary_function {
4343
which <i>may</i> be used as base classes (similarly to the iterator template),
4444
but were originally <i>not</i> intended as a customization point. The SGI
4545
documentation introduced the concept
46-
<a href="http://www.sgi.com/tech/stl/AdaptableUnaryFunction.html">Adaptable Unary
46+
<a href="https://www.boost.org/sgi/stl/AdaptableUnaryFunction.html">Adaptable Unary
4747
Function</a> as function objects "with nested typedefs that define its argument
4848
type and result type" and a similar definition for
49-
<a href="http://www.sgi.com/tech/stl/AdaptableBinaryFunction.html">Adaptable Binary
49+
<a href="https://www.boost.org/sgi/stl/AdaptableBinaryFunction.html">Adaptable Binary
5050
Function</a> related to <tt>binary_function</tt>. But as of TR1 a protocol was
5151
introduced that relies on inheritance relations based on these types. <sref
5252
ref="[refwrap]"/>/3 b. 3 requires that a specialization of

xml/issue1332.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ The new definition goes beyond the original hash requirements as specified
6363
by SGI library in regard to the exception requirement:
6464
</p>
6565
<blockquote><p>
66-
<a href="http://www.sgi.com/tech/stl/HashFunction.html">http://www.sgi.com/tech/stl/HashFunction.html</a>
66+
<a href="https://www.boost.org/sgi/stl/HashFunction.html">https://www.boost.org/sgi/stl/HashFunction.html</a>
6767
</p></blockquote>
6868
</li>
6969

xml/issue2035.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ones without semantics:
4141
*r++ = o // output iterator
4242
*r-- // bidirectional iterator
4343
</pre></blockquote><p>
44-
According to the <a href="http://www.sgi.com/tech/stl/OutputIterator.html">SGI specification</a>
44+
According to the <a href="https://www.boost.org/sgi/stl/OutputIterator.html">SGI specification</a>
4545
these correspond to
4646
</p><blockquote><pre>
4747
{ *r = o; ++r; } // output iterator
@@ -280,7 +280,7 @@ that are not associated with any sequence. [&hellip;]
280280
<sref ref="[input.iterators]"/>, as indicated [<i>Rationale</i>: The wording changes attempt
281281
to define a minimal "independent" set of operations, namely <tt>*a</tt> and <tt>++r</tt>, and
282282
to specify the semantics of the remaining ones. This approach seems to be in agreement with the
283-
original <a href="http://www.sgi.com/tech/stl/InputIterator.html">SGI specification</a>
283+
original <a href="https://www.boost.org/sgi/stl/InputIterator.html">SGI specification</a>
284284
&mdash; <i>end rationale</i>]:</p>
285285

286286
<blockquote>
@@ -366,7 +366,7 @@ return tmp; }
366366
<sref ref="[output.iterators]"/>, as indicated [<i>Rationale</i>: The wording changes attempt
367367
to define a minimal "independent" set of operations, namely <tt>*r = o</tt> and <tt>++r</tt>,
368368
and to specify the semantics of the remaining ones. This approach seems to be in agreement with
369-
the original <a href="http://www.sgi.com/tech/stl/OutputIterator.html">SGI specification</a>
369+
the original <a href="https://www.boost.org/sgi/stl/OutputIterator.html">SGI specification</a>
370370
&mdash; <i>end rationale</i>]:</p>
371371

372372
<blockquote>

xml/issue2072.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ or a pair of 0 values if no storage can be obtained or if <tt>n &lt;= 0</tt>.
2929
I read this as prohibiting to return a buffer of which capacity is less than <tt>n</tt>, because
3030
such a buffer is not sufficient to store <tt>n</tt> objects.
3131
<p/>
32-
The corresponding description in <a href="http://www.sgi.com/tech/stl/get_temporary_buffer.html">SGI STL</a>
32+
The corresponding description in <a href="https://www.boost.org/sgi/stl/get_temporary_buffer.html">SGI STL</a>
3333
is clear on this point, but I think it is a bit too verbose:
3434
</p>
3535

xml/issue2114.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ e.g. <sref ref="[alg.find]"/> p2, which talks about "<tt>pred(*i) != false</tt>"
9494
While we could simply fix all these places by proper wording to be considered in a "contextual conversion to
9595
<tt>bool</tt>", I think that this is not the correct solution: Many third-party libraries already refer to
9696
the previous C++03 <tt>Predicate</tt> definition &mdash; it actually predates C++98 and is as old as the
97-
<a href="http://www.sgi.com/tech/stl/Predicate.html">SGI specification</a>. It seems to be a high price to
97+
<a href="https://www.boost.org/sgi/stl/Predicate.html">SGI specification</a>. It seems to be a high price to
9898
pay to switch to direct initialization here instead of fixing a completely different specification problem.
9999
<p/>
100100
A final observation is that we have another definition for a <tt>Predicate</tt> in <sref ref="[thread.req.paramname]"/> p2:

xml/issue2417.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ requirements (see <iref ref="2114"/>) for the result type of <tt>T</tt>'s <tt>op
2828
<p/>
2929
Arguably, corresponding operators for <tt>pair</tt> and <tt>tuple</tt> do not impose <tt>LessThanComparable</tt> (nor
3030
<tt>EqualityComparable</tt>), albeit the definition of the "derived" relation functions depend on properties ensured by
31-
<tt>LessThanComparable</tt>. According to the <a href="https://www.sgi.com/tech/stl/pair.html">SGI definition</a>, the intention was
31+
<tt>LessThanComparable</tt>. According to the <a href="https://www.boost.org/sgi/stl/pair.html">SGI definition</a>, the intention was
3232
to imposed both <tt>EqualityComparable</tt> and <tt>LessThanComparable</tt>. If this is not intended, the standard should clarify
3333
this position.
3434
</p>

xml/issue2448.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The initial "note:" can be read as if that part of the specification would not b
2323
differs from footnotes in tables, which have normative meaning).
2424
<p/>
2525
It seems that this initial part of the specification exists since C++98. But comparing with
26-
the similar <a href="https://www.sgi.com/tech/stl/Container.html">SGI Container specification</a> there is no evidence
26+
the similar <a href="https://www.boost.org/sgi/stl/Container.html">SGI Container specification</a> there is no evidence
2727
for that being intended to be non-normative.
2828
</p>
2929

0 commit comments

Comments
 (0)