diff options
author | dannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-12-29 05:32:16 +0000 |
---|---|---|
committer | dannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-12-29 05:32:16 +0000 |
commit | f7ee45aee3955ff2d67f47ed5cc5f2db4df09386 (patch) | |
tree | f6b726f009ad7733af2aff507a3d5f04e518a6bd /libstdc++-v3 | |
parent | 0d20a4a05c00107925d28fb7f995c0df80f06fb3 (diff) | |
download | gcc-f7ee45aee3955ff2d67f47ed5cc5f2db4df09386.tar.gz |
* config/os/mingw32/error_constants.h (enum posix_errno): Move
inside namespace posix_error
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@131218 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/config/os/mingw32/error_constants.h | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index f9fbeeeb77a..6f310efbeeb 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2007-12-29 Danny Smith <dannysmith@users.sourceforge.net> + + * config/os/mingw32/error_constants.h (enum posix_errno): Move + inside namespace posix_error +. 2007-12-27 Paolo Carlini <pcarlini@suse.de> PR libstdc++/34538 diff --git a/libstdc++-v3/config/os/mingw32/error_constants.h b/libstdc++-v3/config/os/mingw32/error_constants.h index 85d9273582f..baba5c325cf 100644 --- a/libstdc++-v3/config/os/mingw32/error_constants.h +++ b/libstdc++-v3/config/os/mingw32/error_constants.h @@ -41,8 +41,9 @@ _GLIBCXX_BEGIN_NAMESPACE(std) +namespace posix_error { // Most of the commented-out error codes are socket-related and could be -// replaced bu Winsock WSA-prefixed equivalents. +// replaced bu Winsock WSA-prefixed equivalents. enum posix_errno { // address_family_not_supported = EAFNOSUPPORT, @@ -125,6 +126,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) // wrong_protocol_type = EPROTOTYPE, no_posix_equivalent = 1L << 16 }; +} _GLIBCXX_END_NAMESPACE |