[llvm-branch-commits] Extract SipHash implementation into a header. (PR #134197)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Apr 2 21:37:39 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 3ef9bf0d07bbae11f8f7bf65eec37e72a21695dd 7d7b3bee7e0d317d33244fbc2d97c113df8c3b52 --extensions cpp -- llvm/lib/Support/SipHash.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Support/SipHash.cpp b/llvm/lib/Support/SipHash.cpp
index 682e9231c7..86dad66420 100644
--- a/llvm/lib/Support/SipHash.cpp
+++ b/llvm/lib/Support/SipHash.cpp
@@ -12,12 +12,12 @@
//===----------------------------------------------------------------------===//
#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 "siphash/SipHash.h"
#include <cstdint>
using namespace llvm;
``````````
</details>
https://github.com/llvm/llvm-project/pull/134197
More information about the llvm-branch-commits
mailing list