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 1111
1212#include " clang/Basic/LLVM.h"
1313#include " llvm/ADT/CachedHashString.h"
14- #include " llvm/ADT/Hashing.h"
1514#include " llvm/ADT/SetVector.h"
1615#include " llvm/ADT/StringRef.h"
1716#include " llvm/Support/HashBuilder.h"
@@ -310,21 +309,12 @@ class HeaderSearchOptions {
310309 }
311310};
312311
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-
317312template <typename HasherT, llvm::endianness Endianness>
318313inline void addHash (llvm::HashBuilder<HasherT, Endianness> &HBuilder,
319314 const HeaderSearchOptions::Entry &E) {
320315 HBuilder.add (E.Path , E.Group , E.IsFramework , E.IgnoreSysRoot );
321316}
322317
323- inline llvm::hash_code
324- hash_value (const HeaderSearchOptions::SystemHeaderPrefix &SHP) {
325- return llvm::hash_combine (SHP.Prefix , SHP.IsSystemHeader );
326- }
327-
328318template <typename HasherT, llvm::endianness Endianness>
329319inline void addHash (llvm::HashBuilder<HasherT, Endianness> &HBuilder,
330320 const HeaderSearchOptions::SystemHeaderPrefix &SHP) {
You can’t perform that action at this time.
0 commit comments