Re: broken link on this page https://gcc.gnu.org/gcc-7/changes.html for link to "Profile Mode" page:

2017-08-07 Thread Jonathan Wakely
On 5 August 2017 at 21:58, Gerald Pfeifer wrote: > On Fri, 4 Aug 2017, Jonathan Wakely wrote: >> Thanks for letting us know, I've fixed the link. > > Thanks, Jonathan. > > https://gcc.gnu.org/onlinedocs/gcc-7.1.0/libstdc++/manual/manual/profile_mode.html >

Re: broken link on this page https://gcc.gnu.org/gcc-7/changes.html for link to "Profile Mode" page:

2017-08-05 Thread Gerald Pfeifer
On Fri, 4 Aug 2017, Jonathan Wakely wrote: > Thanks for letting us know, I've fixed the link. Thanks, Jonathan. https://gcc.gnu.org/onlinedocs/gcc-7.1.0/libstdc++/manual/manual/profile_mode.html ^ Should we do something about "manual

Re: broken link on this page https://gcc.gnu.org/gcc-7/changes.html for link to "Profile Mode" page:

2017-08-04 Thread Jonathan Wakely
On 2 August 2017 at 13:55, Sergei Kurenkov wrote: > Link on this page https://gcc.gnu.org/gcc-7/changes.html for "Profile Mode": > > * The libstdc++ Profile Mode has been deprecated and will be removed > in a future version. > > gives: > > Not Found > > T

broken link on this page https://gcc.gnu.org/gcc-7/changes.html for link to "Profile Mode" page:

2017-08-02 Thread Sergei Kurenkov
Link on this page https://gcc.gnu.org/gcc-7/changes.html for "Profile Mode": * The libstdc++ Profile Mode has been deprecated and will be removed in a future version. gives: Not Found The requested URL /onlinedocs/gcc-7.1.0/libstdc++/manual/profile_mode.html was not found on this server.

Re: https://gcc.gnu.org/gcc-7/changes.html

2017-07-11 Thread Jonny Grant
On 11/07/17 09:56, Jonathan Wakely wrote: On 11 July 2017 at 17:51, Jonny Grant wrote: Hello https://gcc.gnu.org/gcc-7/changes.html snprintf (d, sizeof d, "%#02x", x & 0xff); ^^ Should be: sizeof(d) ? "The sizeof operator yields the size (in bytes) of

Re: https://gcc.gnu.org/gcc-7/changes.html

2017-07-11 Thread Jonathan Wakely
On 11 July 2017 at 17:51, Jonny Grant wrote: > Hello > https://gcc.gnu.org/gcc-7/changes.html > > snprintf (d, sizeof d, "%#02x", x & 0xff); > >^^ > Should be: sizeof(d) ? "The sizeof operator yields the size (in bytes) of its op

Re: https://gcc.gnu.org/gcc-7/changes.html

2017-07-11 Thread Marek Polacek
On Tue, Jul 11, 2017 at 09:51:19AM -0700, Jonny Grant wrote: > Hello > https://gcc.gnu.org/gcc-7/changes.html > > snprintf (d, sizeof d, "%#02x", x & 0xff); > >^^ > Should be: sizeof(d) ? Why? Both are correct. Marek

https://gcc.gnu.org/gcc-7/changes.html

2017-07-11 Thread Jonny Grant
Hello https://gcc.gnu.org/gcc-7/changes.html snprintf (d, sizeof d, "%#02x", x & 0xff); ^^ Should be: sizeof(d) ? I'm not on this mailing list, so please cc me in any replies Regards, Jonny