Fix LWG#2127: Move-construction with raw_storage_iterator.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@251247 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dbef2bb1d0
commit
332ab91947
@ -1909,6 +1909,10 @@ public:
|
|||||||
_LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator*() {return *this;}
|
_LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator*() {return *this;}
|
||||||
_LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(const _Tp& __element)
|
_LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(const _Tp& __element)
|
||||||
{::new(&*__x_) _Tp(__element); return *this;}
|
{::new(&*__x_) _Tp(__element); return *this;}
|
||||||
|
#if _LIBCPP_STD_VER >= 14
|
||||||
|
_LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(_Tp&& __element)
|
||||||
|
{::new(&*__x_) _Tp(_VSTD::move(__element)); return *this;}
|
||||||
|
#endif
|
||||||
_LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator++() {++__x_; return *this;}
|
_LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator++() {++__x_; return *this;}
|
||||||
_LIBCPP_INLINE_VISIBILITY raw_storage_iterator operator++(int)
|
_LIBCPP_INLINE_VISIBILITY raw_storage_iterator operator++(int)
|
||||||
{raw_storage_iterator __t(*this); ++__x_; return __t;}
|
{raw_storage_iterator __t(*this); ++__x_; return __t;}
|
||||||
|
@ -13,6 +13,8 @@
|
|||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
|
#include <MoveOnly.h>
|
||||||
|
|
||||||
int A_constructed = 0;
|
int A_constructed = 0;
|
||||||
|
|
||||||
struct A
|
struct A
|
||||||
@ -29,16 +31,33 @@ public:
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
typedef std::aligned_storage<3*sizeof(A), std::alignment_of<A>::value>::type
|
{
|
||||||
|
typedef A S;
|
||||||
|
typedef std::aligned_storage<3*sizeof(S), std::alignment_of<S>::value>::type
|
||||||
Storage;
|
Storage;
|
||||||
Storage buffer;
|
Storage buffer;
|
||||||
std::raw_storage_iterator<A*, A> it((A*)&buffer);
|
std::raw_storage_iterator<S*, S> it((S*)&buffer);
|
||||||
assert(A_constructed == 0);
|
assert(A_constructed == 0);
|
||||||
for (int i = 0; i < 3; ++i)
|
for (int i = 0; i < 3; ++i)
|
||||||
{
|
{
|
||||||
*it++ = A(i+1);
|
*it++ = S(i+1);
|
||||||
A* ap = (A*)&buffer + i;
|
S* ap = (S*)&buffer + i;
|
||||||
assert(*ap == i+1);
|
assert(*ap == i+1);
|
||||||
assert(A_constructed == i+1);
|
assert(A_constructed == i+1);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
#if _LIBCPP_STD_VER >= 14
|
||||||
|
{
|
||||||
|
typedef MoveOnly S;
|
||||||
|
typedef std::aligned_storage<3*sizeof(S), std::alignment_of<S>::value>::type
|
||||||
|
Storage;
|
||||||
|
Storage buffer;
|
||||||
|
std::raw_storage_iterator<S*, S> it((S*)&buffer);
|
||||||
|
S m{1};
|
||||||
|
*it++ = std::move(m);
|
||||||
|
assert(m.get() == 0); // moved from
|
||||||
|
S *ap = (S*) &buffer;
|
||||||
|
assert(ap->get() == 1); // original value
|
||||||
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -152,7 +152,7 @@
|
|||||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2101">2101</a></td><td>Some transformation types can produce impossible types</td><td>Kona</td><td></td></tr>
|
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2101">2101</a></td><td>Some transformation types can produce impossible types</td><td>Kona</td><td></td></tr>
|
||||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2111">2111</a></td><td>Which <tt>unexpected</tt>/<tt>terminate</tt> handler is called from the exception handling runtime?</td><td>Kona</td><td>Complete</td></tr>
|
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2111">2111</a></td><td>Which <tt>unexpected</tt>/<tt>terminate</tt> handler is called from the exception handling runtime?</td><td>Kona</td><td>Complete</td></tr>
|
||||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2119">2119</a></td><td>Missing <tt>hash</tt> specializations for extended integer types</td><td>Kona</td><td></td></tr>
|
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2119">2119</a></td><td>Missing <tt>hash</tt> specializations for extended integer types</td><td>Kona</td><td></td></tr>
|
||||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2127">2127</a></td><td>Move-construction with <tt>raw_storage_iterator</tt></td><td>Kona</td><td>Patch Ready</td></tr>
|
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2127">2127</a></td><td>Move-construction with <tt>raw_storage_iterator</tt></td><td>Kona</td><td>Complete</td></tr>
|
||||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2133">2133</a></td><td>Attitude to overloaded comma for iterators</td><td>Kona</td><td>Complete</td></tr>
|
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2133">2133</a></td><td>Attitude to overloaded comma for iterators</td><td>Kona</td><td>Complete</td></tr>
|
||||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2156">2156</a></td><td>Unordered containers' <tt>reserve(n)</tt> reserves for <tt>n-1</tt> elements</td><td>Kona</td><td></td></tr>
|
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2156">2156</a></td><td>Unordered containers' <tt>reserve(n)</tt> reserves for <tt>n-1</tt> elements</td><td>Kona</td><td></td></tr>
|
||||||
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2218">2218</a></td><td>Unclear how containers use <tt>allocator_traits::construct()</tt></td><td>Kona</td><td></td></tr>
|
<tr><td><a href="http://cplusplus.github.io/LWG/lwg-defects.html#2218">2218</a></td><td>Unclear how containers use <tt>allocator_traits::construct()</tt></td><td>Kona</td><td></td></tr>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user