Commit c2ac0d63 by Paolo Carlini Committed by Paolo Carlini

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
parent f41371ea
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> 2011-01-26 Johannes Singler <singler@kit.edu>
* include/parallel/numeric (inner_product, partial_sum): * include/parallel/numeric (inner_product, partial_sum):
......
// -*- C++ -*- header. // -*- 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 // 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 @@ ...@@ -33,7 +33,6 @@
#pragma GCC system_header #pragma GCC system_header
#include <bits/c++config.h> #include <bits/c++config.h>
#include <stddef.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
...@@ -72,8 +71,8 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ...@@ -72,8 +71,8 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
inline _Tp inline _Tp
kill_dependency(_Tp __y) kill_dependency(_Tp __y)
{ {
_Tp ret(__y); _Tp __ret(__y);
return ret; return __ret;
} }
/** /**
......
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