error_constants.h: Fix commas.
2011-08-30 Paolo Carlini <paolo.carlini@oracle.com> * config/os/mingw32/error_constants.h: Fix commas. From-SVN: r178286
This commit is contained in:
parent
809fbdce1c
commit
54e776dc2d
@ -1,3 +1,7 @@
|
|||||||
|
2011-08-30 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
|
* config/os/mingw32/error_constants.h: Fix commas.
|
||||||
|
|
||||||
2011-08-29 Benjamin Kosnik <bkoz@redhat.com>
|
2011-08-29 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
* testsuite/20_util/duration/arithmetic/constexpr.cc: Add.
|
* testsuite/20_util/duration/arithmetic/constexpr.cc: Add.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Specific definitions for mingw32 platform -*- C++ -*-
|
// Specific definitions for mingw32 platform -*- C++ -*-
|
||||||
|
|
||||||
// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
// Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// This file is part of the GNU ISO C++ Library. This library is free
|
||||||
// software; you can redistribute it and/or modify it under the
|
// software; you can redistribute it and/or modify it under the
|
||||||
@ -33,7 +33,6 @@
|
|||||||
#include <bits/c++config.h>
|
#include <bits/c++config.h>
|
||||||
#include <cerrno>
|
#include <cerrno>
|
||||||
|
|
||||||
|
|
||||||
namespace std _GLIBCXX_VISIBILITY(default)
|
namespace std _GLIBCXX_VISIBILITY(default)
|
||||||
{
|
{
|
||||||
_GLIBCXX_BEGIN_NAMESPACE_VERSION
|
_GLIBCXX_BEGIN_NAMESPACE_VERSION
|
||||||
@ -129,11 +128,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
|
|||||||
too_many_files_open_in_system = ENFILE,
|
too_many_files_open_in_system = ENFILE,
|
||||||
too_many_files_open = EMFILE,
|
too_many_files_open = EMFILE,
|
||||||
too_many_links = EMLINK
|
too_many_links = EMLINK
|
||||||
// too_many_symbolic_link_levels = ELOOP,
|
// too_many_symbolic_link_levels = ELOOP,
|
||||||
#ifdef _GLIBCXX_HAVE_EOVERFLOW
|
#ifdef _GLIBCXX_HAVE_EOVERFLOW
|
||||||
value_too_large = EOVERFLOW,
|
,
|
||||||
|
value_too_large = EOVERFLOW
|
||||||
#endif
|
#endif
|
||||||
// wrong_protocol_type = EPROTOTYPE
|
// wrong_protocol_type = EPROTOTYPE
|
||||||
};
|
};
|
||||||
|
|
||||||
_GLIBCXX_END_NAMESPACE_VERSION
|
_GLIBCXX_END_NAMESPACE_VERSION
|
||||||
|
Loading…
Reference in New Issue
Block a user