* config/os/mingw32/error_constants.h (enum posix_errno): Move
authordannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 29 Dec 2007 05:32:16 +0000 (05:32 +0000)
committerdannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 29 Dec 2007 05:32:16 +0000 (05:32 +0000)
inside namespace posix_error

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@131218 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/config/os/mingw32/error_constants.h

index f9fbeee..6f310ef 100644 (file)
@@ -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
index 85d9273..baba5c3 100644 (file)
@@ -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