forked from OSchip/llvm-project
Fix test failures due to bad test hasher
llvm-svn: 296568
This commit is contained in:
parent
71e329266a
commit
81529ba9ab
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue