diff options
author | Carlos O'Donell <carlos@redhat.com> | 2016-06-03 17:21:53 -0400 |
---|---|---|
committer | Carlos O'Donell <carlos@redhat.com> | 2016-06-03 20:10:04 -0400 |
commit | cda672e7bd2e2d11bae1e4bf5d2dd4532a610ebd (patch) | |
tree | 48d61e291123bb21099387ea0c5340d08d321ce8 /ChangeLog | |
parent | 8cbd1453ec1c59e54652edcd88256f4023ff77b9 (diff) | |
download | glibc-cda672e7bd2e2d11bae1e4bf5d2dd4532a610ebd.tar.gz glibc-cda672e7bd2e2d11bae1e4bf5d2dd4532a610ebd.tar.xz glibc-cda672e7bd2e2d11bae1e4bf5d2dd4532a610ebd.zip |
Fix include/wchar.h for C++
When trying to compile regression tests that use C++ and the threads header you get this failure: In file included from /usr/include/c++/5.3.1/cwchar:44:0, from /usr/include/c++/5.3.1/bits/postypes.h:40, from /usr/include/c++/5.3.1/bits/char_traits.h:40, from /usr/include/c++/5.3.1/string:40, from /usr/include/c++/5.3.1/stdexcept:39, from /usr/include/c++/5.3.1/array:38, from /usr/include/c++/5.3.1/tuple:39, from /usr/include/c++/5.3.1/functional:55, from /usr/include/c++/5.3.1/thread:39, from tst-thread-quick_exit.cc:19: ../include/wchar.h:105:23: error: invalid conversion from ‘wchar_t* (*)(wchar_t*, wchar_t, size_t) throw () {aka wchar_t* (*)(wchar_t*, wchar_t, long unsigned int) throw ()}’ to ‘int’ [-fpermissive] extern typeof (wmemset) __wmemset; ^ ../include/wchar.h:105:25: error: expected ‘,’ or ‘;’ before ‘__wmemset’ extern typeof (wmemset) __wmemset; ^ The simplest fix for C++ is to avoid the use of typeof and just declare the prototype as expected. No regressions on x86_64. Committed as obvious. The include/wchar.h header is only for internal build uses and therefore is not ever seen by any external users and needs no bug #.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 3e16edf9e8..fac360e464 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2016-06-03 Carlos O'Donell <carlos@redhat.com> + + * include/wchar.h (__wmemset): Declare function without typeof. + 2016-06-03 Joseph Myers <joseph@codesourcery.com> [BZ #20205] |