Skip to content

Commit c46997a

Browse files
committed
LWG3100 Unnecessary and confusing "empty span" wording
1 parent e87b57b commit c46997a

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

source/containers.tex

+1-6
Original file line numberDiff line numberDiff line change
@@ -9854,10 +9854,6 @@
98549854
constexpr span() noexcept;
98559855
\end{itemdecl}
98569856
\begin{itemdescr}
9857-
\pnum
9858-
\effects
9859-
Constructs an empty \tcode{span}.
9860-
98619857
\pnum
98629858
\postconditions
98639859
\tcode{size() == 0 \&\& data() == nullptr}.
@@ -9881,12 +9877,12 @@
98819877
\pnum
98829878
\effects
98839879
Constructs a \tcode{span} that is a view over the range \range{ptr}{ptr + count}.
9884-
If \tcode{count} is 0 then an empty span is constructed.
98859880

98869881
\pnum
98879882
\postconditions
98889883
\tcode{size() == count \&\& data() == ptr}.
98899884

9885+
\pnum
98909886
\throws
98919887
Nothing.
98929888
\end{itemdescr}
@@ -9905,7 +9901,6 @@
99059901
\pnum
99069902
\effects
99079903
Constructs a span that is a view over the range \range{first}{last}.
9908-
If \tcode{last - first == 0} then an empty \tcode{span} is constructed.
99099904

99109905
\pnum
99119906
\postconditions

0 commit comments

Comments
 (0)