Commit 537a336b by Danny Smith Committed by Danny Smith

error_constants.h (enum posix_errno): Move inside namespace posix_error

	* config/os/mingw32/error_constants.h (enum posix_errno): Move
	inside namespace posix_error

From-SVN: r131218
parent 01e493bf
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> 2007-12-27 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/34538 PR libstdc++/34538
......
...@@ -41,8 +41,9 @@ ...@@ -41,8 +41,9 @@
_GLIBCXX_BEGIN_NAMESPACE(std) _GLIBCXX_BEGIN_NAMESPACE(std)
namespace posix_error {
// Most of the commented-out error codes are socket-related and could be // 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 enum posix_errno
{ {
// address_family_not_supported = EAFNOSUPPORT, // address_family_not_supported = EAFNOSUPPORT,
...@@ -125,6 +126,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -125,6 +126,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
// wrong_protocol_type = EPROTOTYPE, // wrong_protocol_type = EPROTOTYPE,
no_posix_equivalent = 1L << 16 no_posix_equivalent = 1L << 16
}; };
}
_GLIBCXX_END_NAMESPACE _GLIBCXX_END_NAMESPACE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment