summaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2011-12-23 17:20:44 +0000
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2011-12-23 17:20:44 +0000
commit8ef94a9a085187443611397db1b98064cde81ed8 (patch)
tree0143c83ea2f918f949b733128a2dc0982a2e50d5 /libstdc++-v3
parenta6c7a7ac9385b04d4aee27e78e21a9122bd2c267 (diff)
downloadgcc-8ef94a9a085187443611397db1b98064cde81ed8.tar.gz
* include/c_global/cinttypes: Update comments that refer to TR1.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@182659 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/include/c_global/cinttypes14
2 files changed, 8 insertions, 10 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 728655fb0cb..dbe0bb5616f 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,9 @@
2011-12-23 Jonathan Wakely <jwakely.gcc@gmail.com>
+ * include/c_global/cinttypes: Update comments that refer to TR1.
+
+2011-12-23 Jonathan Wakely <jwakely.gcc@gmail.com>
+
PR libstdc++/49204
* include/std/future (future_errc): Implement LWG 2056.
diff --git a/libstdc++-v3/include/c_global/cinttypes b/libstdc++-v3/include/c_global/cinttypes
index df733407bd3..030962bdf32 100644
--- a/libstdc++-v3/include/c_global/cinttypes
+++ b/libstdc++-v3/include/c_global/cinttypes
@@ -1,6 +1,6 @@
// <cinttypes> -*- 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
@@ -37,7 +37,7 @@
#include <cstdint>
-// For 8.11.1/1 (see C99, Note 184)
+// For 27.9.2/3 (see C99, Note 184)
#if _GLIBCXX_HAVE_INTTYPES_H
# ifndef __STDC_FORMAT_MACROS
# define _UNDEF__STDC_FORMAT_MACROS
@@ -59,16 +59,10 @@ namespace std
// functions
using ::imaxabs;
-
- // May collide with _Longlong abs(_Longlong), and is not described
- // anywhere outside the synopsis. Likely, a defect.
- //
- // intmax_t abs(intmax_t)
-
using ::imaxdiv;
- // Likewise, with lldiv_t div(_Longlong, _Longlong).
- //
+ // GCC does not support extended integer types
+ // intmax_t abs(intmax_t)
// imaxdiv_t div(intmax_t, intmax_t)
using ::strtoimax;