summaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorPaolo Carlini <paolo@gcc.gnu.org>2011-08-30 08:57:52 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2011-08-30 08:57:52 +0000
commit54e776dc2dde0ff83ab38192647071df2f0f9354 (patch)
tree3556e02d151ece243c86dedee78e48dd257bbea3 /libstdc++-v3
parent809fbdce1cd4660963c0de19a7bac82c81b7f767 (diff)
downloadgcc-54e776dc2dde0ff83ab38192647071df2f0f9354.tar.gz
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
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog6
-rw-r--r--libstdc++-v3/config/os/mingw32/error_constants.h10
2 files changed, 10 insertions, 6 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 18761c14442..d125509d7c2 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -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>
* testsuite/20_util/duration/arithmetic/constexpr.cc: Add.
@@ -9,7 +13,7 @@
* acinclude.m4 (GLIBCXX_CHECK_SYSTEM_ERROR) Add
checks for ECHILD, ENOSPC, EPERM, ETIMEDOUT, and
EWOULDBLOCK.
- * config/os/mingw32/error_constants.h (errc): Add
+ * config/os/mingw32/error_constants.h (errc): Add
enumerator values no_child_process, no_space_on_device,
not_supported, operation_not_permitted, operation_would_block,
timed_out, and value_too_large,
diff --git a/libstdc++-v3/config/os/mingw32/error_constants.h b/libstdc++-v3/config/os/mingw32/error_constants.h
index 15f99671ff8..da2d311762c 100644
--- a/libstdc++-v3/config/os/mingw32/error_constants.h
+++ b/libstdc++-v3/config/os/mingw32/error_constants.h
@@ -1,6 +1,6 @@
// 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
// software; you can redistribute it and/or modify it under the
@@ -33,7 +33,6 @@
#include <bits/c++config.h>
#include <cerrno>
-
namespace std _GLIBCXX_VISIBILITY(default)
{
_GLIBCXX_BEGIN_NAMESPACE_VERSION
@@ -129,11 +128,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
too_many_files_open_in_system = ENFILE,
too_many_files_open = EMFILE,
too_many_links = EMLINK
- // too_many_symbolic_link_levels = ELOOP,
+// too_many_symbolic_link_levels = ELOOP,
#ifdef _GLIBCXX_HAVE_EOVERFLOW
- value_too_large = EOVERFLOW,
+ ,
+ value_too_large = EOVERFLOW
#endif
- // wrong_protocol_type = EPROTOTYPE
+// wrong_protocol_type = EPROTOTYPE
};
_GLIBCXX_END_NAMESPACE_VERSION