Re: [v3 PATCH] Implement LWG 2221, No formatted output operator for nullptr

2019-01-11 Thread Jonathan Wakely
On 11/01/19 10:07 +0100, Rainer Orth wrote: Hi Jonathan, this patch broke Solaris bootstrap: ld: fatal: libstdc++-symbols.ver-sun: 7117: symbol 'std::basic_ostream >::operator<<(decltype(nullptr))': symbol version conflict ld: fatal: libstdc++-symbols.ver-sun: 7119: symbol 'std::basic_ostream

Re: [v3 PATCH] Implement LWG 2221, No formatted output operator for nullptr

2019-01-11 Thread Rainer Orth
Hi Jonathan, >>this patch broke Solaris bootstrap: >> >>ld: fatal: libstdc++-symbols.ver-sun: 7117: symbol 'std::basic_ostream>std::char_traits >::operator<<(decltype(nullptr))': symbol version >>conflict >>ld: fatal: libstdc++-symbols.ver-sun: 7119: symbol >>'std::basic_ostream

Re: [v3 PATCH] Implement LWG 2221, No formatted output operator for nullptr

2019-01-10 Thread Jonathan Wakely
On 10/01/19 22:27 +0100, Rainer Orth wrote: Hi Jonathan, On 04/12/17 23:04 +, Jonathan Wakely wrote: On 03/12/17 23:08 +0200, Ville Voutilainen wrote: Tested on Linux-x64. 2017-11-14 Ville Voutilainen Implement LWG 2221 * include/std/ostream (operator<<(nullptr_t)): New. *

Re: [v3 PATCH] Implement LWG 2221, No formatted output operator for nullptr

2019-01-10 Thread Rainer Orth
Hi Jonathan, > On 04/12/17 23:04 +, Jonathan Wakely wrote: >>On 03/12/17 23:08 +0200, Ville Voutilainen wrote: >>>Tested on Linux-x64. >>> >>>2017-11-14 Ville Voutilainen >>> >>> Implement LWG 2221 >>> * include/std/ostream (operator<<(nullptr_t)): New. >>> *

Re: [v3 PATCH] Implement LWG 2221, No formatted output operator for nullptr

2019-01-10 Thread Jonathan Wakely
On 04/12/17 23:04 +, Jonathan Wakely wrote: On 03/12/17 23:08 +0200, Ville Voutilainen wrote: Tested on Linux-x64. 2017-11-14 Ville Voutilainen Implement LWG 2221 * include/std/ostream (operator<<(nullptr_t)): New. * testsuite/27_io/basic_ostream/inserters_other/char/lwg2221.cc:

Re: [v3 PATCH] Implement LWG 2221, No formatted output operator for nullptr

2017-12-04 Thread Jonathan Wakely
On 03/12/17 23:08 +0200, Ville Voutilainen wrote: Tested on Linux-x64. 2017-11-14 Ville Voutilainen Implement LWG 2221 * include/std/ostream (operator<<(nullptr_t)): New. * testsuite/27_io/basic_ostream/inserters_other/char/lwg2221.cc: New. diff

[v3 PATCH] Implement LWG 2221, No formatted output operator for nullptr

2017-12-03 Thread Ville Voutilainen
Tested on Linux-x64. 2017-11-14 Ville Voutilainen Implement LWG 2221 * include/std/ostream (operator<<(nullptr_t)): New. * testsuite/27_io/basic_ostream/inserters_other/char/lwg2221.cc: New. diff --git a/libstdc++-v3/include/std/ostream