Revert "[libc] Use best-fit binary trie to make malloc logarithmic" (#117065)
[llvm-project.git] / libcxx / test / std / containers / NotConstructible.h
blob213aa1442d5c200a358216f4f0c6de1436eb2441
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef NOTCONSTRUCTIBLE_H
10 #define NOTCONSTRUCTIBLE_H
12 #include <functional>
14 class NotConstructible
16 NotConstructible(const NotConstructible&);
17 NotConstructible& operator=(const NotConstructible&);
18 public:
21 inline
22 bool
23 operator==(const NotConstructible&, const NotConstructible&)
24 {return true;}
26 template <>
27 struct std::hash<NotConstructible> {
28 typedef NotConstructible argument_type;
29 typedef std::size_t result_type;
31 std::size_t operator()(const NotConstructible&) const { return 0; }
34 #endif // NOTCONSTRUCTIBLE_H