From: Siddhesh Poyarekar Date: Fri, 16 Nov 2012 13:26:31 +0000 (+0530) Subject: Note in a comment that references to C++ bits are obsolete X-Git-Tag: glibc-2.17~201 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1848fdeec705bc7d2f64e3a365f1ff66eeb4f0d;p=thirdparty%2Fglibc.git Note in a comment that references to C++ bits are obsolete libio is not used by libstdc++ anymore, but there are references to streambuf are all over. --- diff --git a/ChangeLog b/ChangeLog index fa279585c14..6d522d60db0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-11-16 Siddhesh Poyarekar + + * libio/libioP.h: Add comment note that the references to C++ + bits are now obsolete. + 2012-11-15 Marcus Shawcroft * math/libm-test.inc (check_complex): Use asprintf. diff --git a/libio/libioP.h b/libio/libioP.h index a2800524ec1..fe811150942 100644 --- a/libio/libioP.h +++ b/libio/libioP.h @@ -25,6 +25,14 @@ This exception applies to code released by its copyright holders in files containing the exception. */ +/* NOTE: libio is now exclusively used only by glibc since libstdc++ has its + own implementation. As a result, functions that were implemented for C++ + (like *sputn) may no longer have C++ semantics. This is of course only + relevant for internal callers of these functions since these functions are + not intended for external use otherwise. + + FIXME: All of the C++ cruft eventually needs to go away. */ + #include #ifndef __set_errno # define __set_errno(Val) errno = (Val)