Fix test failures due to bad test hasher

llvm-svn: 296568
This commit is contained in:
Eric Fiselier 2017-03-01 02:34:27 +00:00
parent 71e329266a
commit 81529ba9ab
18 changed files with 24 additions and 0 deletions

View File

@ -42,6 +42,8 @@ struct some_hash
typedef T value_type;
some_hash();
some_hash(const some_hash&);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -35,6 +35,8 @@ struct some_hash
some_hash();
some_hash(const some_hash&);
~some_hash() noexcept(false);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -41,6 +41,8 @@ struct some_hash
some_hash();
some_hash(const some_hash&);
some_hash& operator=(const some_hash&);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -38,6 +38,8 @@ struct some_hash
typedef T value_type;
some_hash();
some_hash(const some_hash&);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -64,6 +64,7 @@ struct some_hash
typedef T value_type;
some_hash() {}
some_hash(const some_hash&);
std::size_t operator()(T const&) const;
};
template <class T>
@ -72,6 +73,7 @@ struct some_hash2
typedef T value_type;
some_hash2() {}
some_hash2(const some_hash2&);
std::size_t operator()(T const&) const;
};
#if TEST_STD_VER >= 14

View File

@ -42,6 +42,7 @@ struct some_hash
typedef T value_type;
some_hash();
some_hash(const some_hash&);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -35,6 +35,7 @@ struct some_hash
some_hash();
some_hash(const some_hash&);
~some_hash() noexcept(false);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -41,6 +41,7 @@ struct some_hash
some_hash();
some_hash(const some_hash&);
some_hash& operator=(const some_hash&);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -38,6 +38,7 @@ struct some_hash
typedef T value_type;
some_hash();
some_hash(const some_hash&);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -64,6 +64,7 @@ struct some_hash
typedef T value_type;
some_hash() {}
some_hash(const some_hash&);
std::size_t operator()(T const&) const;
};
template <class T>
@ -72,6 +73,7 @@ struct some_hash2
typedef T value_type;
some_hash2() {}
some_hash2(const some_hash2&);
std::size_t operator()(T const&) const;
};
#if TEST_STD_VER >= 14

View File

@ -42,6 +42,7 @@ struct some_hash
typedef T value_type;
some_hash();
some_hash(const some_hash&);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -35,6 +35,7 @@ struct some_hash
some_hash();
some_hash(const some_hash&);
~some_hash() noexcept(false);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -41,6 +41,7 @@ struct some_hash
some_hash();
some_hash(const some_hash&);
some_hash& operator=(const some_hash&);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -38,6 +38,7 @@ struct some_hash
typedef T value_type;
some_hash();
some_hash(const some_hash&);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -42,6 +42,7 @@ struct some_hash
typedef T value_type;
some_hash();
some_hash(const some_hash&);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -35,6 +35,7 @@ struct some_hash
some_hash();
some_hash(const some_hash&);
~some_hash() noexcept(false);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -41,6 +41,7 @@ struct some_hash
some_hash();
some_hash(const some_hash&);
some_hash& operator=(const some_hash&);
std::size_t operator()(T const&) const;
};
int main()

View File

@ -38,6 +38,7 @@ struct some_hash
typedef T value_type;
some_hash();
some_hash(const some_hash&);
std::size_t operator()(T const&) const;
};
int main()