File tree Expand file tree Collapse file tree 4 files changed +13
-10
lines changed Expand file tree Collapse file tree 4 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 2172
2172
typedef Iterator pointer;
2173
2173
typedef typename iterator_traits<Iterator>::value_type value_type;
2174
2174
typedef typename iterator_traits<Iterator>::iterator_category iterator_category;
2175
- typedef @\seebelow @ reference;
2175
+ typedef @\seebelownc @ reference;
2176
2176
2177
2177
move_iterator();
2178
2178
explicit move_iterator(Iterator i);
Original file line number Diff line number Diff line change 200
200
\newcommand {\EXPO }[1]{\textit {#1 }}
201
201
\newcommand {\expos }{\EXPO {exposition only}}
202
202
\newcommand {\impdef }{\EXPO {implementation-defined}}
203
+ \newcommand {\impdefnc }{\EXPO {implementation-defined\nocorr }}
203
204
\newcommand {\impdefx }[1]{\indeximpldef {#1}\EXPO {implementation-defined}}
204
205
\newcommand {\notdef }{\EXPO {not defined}}
205
206
206
207
\newcommand {\UNSP }[1]{\textit {\texttt {#1 } }}
208
+ \newcommand {\UNSPnc }[1]{\textit {\texttt {#1 }\nocorr }}
207
209
\newcommand {\unspec }{\UNSP {unspecified}}
208
- \newcommand {\unspecnc }{\textit { \texttt { unspecified } \nocorr }}
210
+ \newcommand {\unspecnc }{\UNSPnc { unspecified}}
209
211
\newcommand {\unspecbool }{\UNSP {unspecified-bool-type}}
210
212
\newcommand {\seebelow }{\UNSP {see below}}
213
+ \newcommand {\seebelownc }{\UNSPnc {see below}}
211
214
\newcommand {\unspecuniqtype }{\UNSP {unspecified unique type}}
212
215
\newcommand {\unspecalloctype }{\UNSP {unspecified allocator type}}
213
216
Original file line number Diff line number Diff line change 879
879
typedef typename allocator_traits<Allocator>::size_type size_type;
880
880
typedef typename allocator_traits<Allocator>::difference_type difference_type;
881
881
882
- typedef value_type& reference;
883
- typedef const value_type& const_reference;
882
+ typedef value_type& reference;
883
+ typedef const value_type& const_reference;
884
884
typedef typename allocator_traits<Allocator>::pointer pointer;
885
885
typedef typename allocator_traits<Allocator>::const_pointer const_pointer;
886
886
887
- typedef @\impdef@ iterator; // See \ref {container.requirements }
888
- typedef @\impdef@ const_iterator; // See \ref {container.requirements }
889
- typedef std::reverse_iterator<iterator> reverse_iterator;
887
+ typedef @\impdefnc@ iterator; // See \ref {container.requirements }
888
+ typedef @\impdefnc@ const_iterator; // See \ref {container.requirements }
889
+ typedef std::reverse_iterator<iterator> reverse_iterator;
890
890
typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
891
891
static const size_type npos = -1;
892
892
952
952
reference at(size_type n);
953
953
954
954
const charT& front() const;
955
- charT& front();
955
+ charT& front();
956
956
const charT& back() const;
957
- charT& back();
957
+ charT& back();
958
958
959
959
// \ref {string.modifiers }, modifiers:
960
960
basic_string& operator+=(const basic_string& str);
Original file line number Diff line number Diff line change 3197
3197
\begin {codeblock }
3198
3198
namespace std {
3199
3199
template <class Ptr> struct pointer_traits {
3200
- typedef Ptr pointer;
3200
+ typedef Ptr @ \itcorr@ pointer;
3201
3201
typedef @\seebelow@ element_type;
3202
3202
typedef @\seebelow@ difference_type;
3203
3203
You can’t perform that action at this time.
0 commit comments