One more local type warning removed from the tests. NFC

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@344421 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2018-10-12 21:59:32 +00:00
parent 8f07eceb27
commit fa1a3d5c91

View File

@@ -44,6 +44,18 @@ constexpr bool test_constexpr() {
}
#endif
struct S {
S(int i) : i_(i) {}
bool operator==(const S& other) = delete;
int i_;
};
struct eq {
bool operator()(const S& a, const S&b) { return a.i_ == b.i_; }
};
int main()
{
{
@@ -739,14 +751,6 @@ int main()
#endif
}
{
struct S {
S(int i) : i_(i) {}
bool operator==(const S& other) = delete;
int i_;
};
struct eq {
bool operator()(const S& a, const S&b) { return a.i_ == b.i_; }
};
const S a[] = {S(0), S(1)};
const S b[] = {S(1), S(0)};
const unsigned sa = sizeof(a)/sizeof(a[0]);