aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Carlini <paolo.carlini@oracle.com>2011-01-28 16:59:49 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2011-01-28 16:59:49 +0000
commitc2ac0d631f70606cc04ae9ed88936a76b31c2b74 (patch)
tree4e31f558c494f9481eb5dce683a9a9cd33fd8190
parentf41371ead8181e3544c9d081bee0b931d0c3fab7 (diff)
downloadgcc-c2ac0d631f70606cc04ae9ed88936a76b31c2b74.zip
gcc-c2ac0d631f70606cc04ae9ed88936a76b31c2b74.tar.gz
gcc-c2ac0d631f70606cc04ae9ed88936a76b31c2b74.tar.bz2
atomic_base.h: Do not include <stddef.h>.
2011-01-28 Paolo Carlini <paolo.carlini@oracle.com> * include/bits/atomic_base.h: Do not include <stddef.h>. (kill_dependency): Uglify ret. From-SVN: r169364
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/include/bits/atomic_base.h7
2 files changed, 8 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index b755b43..1a8d41d 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2011-01-28 Paolo Carlini <paolo.carlini@oracle.com>
+
+ * include/bits/atomic_base.h: Do not include <stddef.h>.
+ (kill_dependency): Uglify ret.
+
2011-01-26 Johannes Singler <singler@kit.edu>
* include/parallel/numeric (inner_product, partial_sum):
diff --git a/libstdc++-v3/include/bits/atomic_base.h b/libstdc++-v3/include/bits/atomic_base.h
index 74fc997..f70b717 100644
--- a/libstdc++-v3/include/bits/atomic_base.h
+++ b/libstdc++-v3/include/bits/atomic_base.h
@@ -1,6 +1,6 @@
// -*- C++ -*- header.
-// Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
+// Copyright (C) 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 @@
#pragma GCC system_header
#include <bits/c++config.h>
-#include <stddef.h>
#include <stdbool.h>
#include <stdint.h>
@@ -72,8 +71,8 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
inline _Tp
kill_dependency(_Tp __y)
{
- _Tp ret(__y);
- return ret;
+ _Tp __ret(__y);
+ return __ret;
}
/**