potential bug in libstc++ ?
Sergey Nenakhov
nenakhov.sergey@gmail.com
Tue Nov 14 14:35:00 GMT 2017
Hello.
Excuse me if I'm posting to the wrong mailing list. I've grabbed gcc-7.2.0
sources and noticed strange statement in the file
gcc-7.2.0\libstdc++-v3\include\bits\locale_conv.h which seems like a bug
to me:
Line 434 and 434 of that file are:
if (__nbytes < 1)
__nbytes == 1;
Should not it be ?
if (__nbytes < 1)
__nbytes = 1;
(= vs == if it didn't hit your eye).
I couldn't find libstdc++-v3 folder in online svn repository to verify if
it was changed since 7.2.0 release
Thanks!
Sergey Nenakhov.
More information about the Gcc
mailing list