forked from OSchip/llvm-project
parent
66dbf0d311
commit
0022123b95
|
@ -248,4 +248,4 @@ operator-(const random_access_iterator<T>& x, const random_access_iterator<U>& y
|
|||
return x.base() - y.base();
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // ITERATORS_H
|
||||
|
|
|
@ -32,7 +32,7 @@ test(C c)
|
|||
assert(c.back() == typename C::value_type());
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
|
||||
int main()
|
||||
{
|
||||
|
|
|
@ -31,7 +31,7 @@ test(C c)
|
|||
assert(c.front() == typename C::value_type());
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
|
||||
int main()
|
||||
{
|
||||
|
|
|
@ -51,7 +51,7 @@ struct do_nothing
|
|||
void operator()(void*) const {}
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
|
||||
int main()
|
||||
{
|
||||
|
@ -91,5 +91,5 @@ int main()
|
|||
c2.push_back(Ptr(x+i));
|
||||
insert3at(c2, c2.begin()+3, Ptr(x+3), Ptr(x+4), Ptr(x+5));
|
||||
test(std::move(c1), 3, Ptr(x+3), Ptr(x+4), Ptr(x+5), c2);
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@ struct do_nothing
|
|||
void operator()(void*) const {}
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
|
||||
int main()
|
||||
{
|
||||
|
@ -54,5 +54,5 @@ int main()
|
|||
for (unsigned j = 0; j < 5; ++j)
|
||||
p[j].reset(i+j);
|
||||
test(p, 3, Ptr(i+3));
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ struct do_nothing
|
|||
void operator()(void*) const {}
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
|
||||
int main()
|
||||
{
|
||||
|
@ -57,5 +57,5 @@ int main()
|
|||
int i;
|
||||
std::unique_ptr<int, do_nothing> p(&i);
|
||||
test(&p, std::unique_ptr<int, do_nothing>(&i));
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue