[llvm] [Support] System include SipHash.h (PR #149499)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 18 04:35:17 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-support
Author: Guy David (guy-david)
<details>
<summary>Changes</summary>
Match the SYSTEM directive to this header which was introduced by 7f3afab, because a regular include may skip system directories.
---
Full diff: https://github.com/llvm/llvm-project/pull/149499.diff
1 Files Affected:
- (modified) llvm/lib/Support/SipHash.cpp (+1-1)
``````````diff
diff --git a/llvm/lib/Support/SipHash.cpp b/llvm/lib/Support/SipHash.cpp
index 86dad66420435..ffcbc5044670d 100644
--- a/llvm/lib/Support/SipHash.cpp
+++ b/llvm/lib/Support/SipHash.cpp
@@ -12,13 +12,13 @@
//===----------------------------------------------------------------------===//
#include "llvm/Support/SipHash.h"
-#include "siphash/SipHash.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Endian.h"
#include <cstdint>
+#include <siphash/SipHash.h>
using namespace llvm;
using namespace support;
``````````
</details>
https://github.com/llvm/llvm-project/pull/149499
More information about the llvm-commits
mailing list