mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 08:40:33 +08:00
stl_raw_storage_iter.h (raw_storage_iterator<>:: operator=(const _Tp&)): Use std::__addressof.
2010-09-16 Paolo Carlini <paolo.carlini@oracle.com> * include/bits/stl_raw_storage_iter.h (raw_storage_iterator<>:: operator=(const _Tp&)): Use std::__addressof. From-SVN: r164343
This commit is contained in:
parent
4d42b5cd6f
commit
5ee996a2c6
@ -1,3 +1,8 @@
|
||||
2010-09-16 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
* include/bits/stl_raw_storage_iter.h (raw_storage_iterator<>::
|
||||
operator=(const _Tp&)): Use std::__addressof.
|
||||
|
||||
2010-09-16 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
* include/std/system_error (system_error::system_error(error_code),
|
||||
|
@ -1,6 +1,6 @@
|
||||
// -*- C++ -*-
|
||||
|
||||
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009
|
||||
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010
|
||||
// Free Software Foundation, Inc.
|
||||
//
|
||||
// This file is part of the GNU ISO C++ Library. This library is free
|
||||
@ -81,7 +81,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
|
||||
raw_storage_iterator&
|
||||
operator=(const _Tp& __element)
|
||||
{
|
||||
std::_Construct(&*_M_iter, __element);
|
||||
std::_Construct(std::__addressof(*_M_iter), __element);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user