File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 5854
5854
basic_ostream& operator<<(long double f);
5855
5855
5856
5856
basic_ostream& operator<<(const void* p);
5857
+ basic_ostream& operator<<(const volatile void* p);
5857
5858
basic_ostream& operator<<(nullptr_t);
5858
5859
basic_ostream& operator<<(basic_streambuf<char_type, traits>* sb);
5859
5860
6419
6420
\tcode {*this}.
6420
6421
\end {itemdescr }
6421
6422
6423
+ \indexlibrarymember {operator<<}{basic_ostream}%
6424
+ \begin {itemdecl }
6425
+ basic_ostream& operator<<(const volatile void* p);
6426
+ \end {itemdecl }
6427
+
6428
+ \begin {itemdescr }
6429
+ \pnum
6430
+ \effects
6431
+ Equivalent to: \tcode {return operator<<(const_cast<const void*>(p));}
6432
+ \end {itemdescr }
6433
+
6422
6434
\rSec 4[ostream.inserters]{\tcode {basic_ostream::operator<<}}
6423
6435
6424
6436
\indexlibrarymember {operator<<}{basic_ostream}%
You can’t perform that action at this time.
0 commit comments