You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/strings.tex
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4709,10 +4709,10 @@
4709
4709
// types
4710
4710
using traits_type = traits;
4711
4711
using value_type = charT;
4712
-
using pointer = charT*;
4713
-
using const_pointer = const charT*;
4714
-
using reference = charT&;
4715
-
using const_reference = const charT&;
4712
+
using pointer = value_type*;
4713
+
using const_pointer = const value_type*;
4714
+
using reference = value_type&;
4715
+
using const_reference = const value_type&;
4716
4716
using const_iterator = @\impdefx{type of \tcode{basic_string_view::const_iterator}}@; // see \ref{string.view.iterators}
4717
4717
using iterator = const_iterator;@\footnote{Because \tcode{basic_string_view} refers to a constant sequence, \tcode{iterator} and \tcode{const_iterator} are the same type.}@
4718
4718
using const_reverse_iterator = reverse_iterator<const_iterator>;
0 commit comments