File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change 11
11
12
12
#include " clang/Basic/LLVM.h"
13
13
#include " llvm/ADT/CachedHashString.h"
14
- #include " llvm/ADT/Hashing.h"
15
14
#include " llvm/ADT/SetVector.h"
16
15
#include " llvm/ADT/StringRef.h"
17
16
#include " llvm/Support/HashBuilder.h"
@@ -310,21 +309,12 @@ class HeaderSearchOptions {
310
309
}
311
310
};
312
311
313
- inline llvm::hash_code hash_value (const HeaderSearchOptions::Entry &E) {
314
- return llvm::hash_combine (E.Path , E.Group , E.IsFramework , E.IgnoreSysRoot );
315
- }
316
-
317
312
template <typename HasherT, llvm::endianness Endianness>
318
313
inline void addHash (llvm::HashBuilder<HasherT, Endianness> &HBuilder,
319
314
const HeaderSearchOptions::Entry &E) {
320
315
HBuilder.add (E.Path , E.Group , E.IsFramework , E.IgnoreSysRoot );
321
316
}
322
317
323
- inline llvm::hash_code
324
- hash_value (const HeaderSearchOptions::SystemHeaderPrefix &SHP) {
325
- return llvm::hash_combine (SHP.Prefix , SHP.IsSystemHeader );
326
- }
327
-
328
318
template <typename HasherT, llvm::endianness Endianness>
329
319
inline void addHash (llvm::HashBuilder<HasherT, Endianness> &HBuilder,
330
320
const HeaderSearchOptions::SystemHeaderPrefix &SHP) {
You can’t perform that action at this time.
0 commit comments