[Lldb-commits] [lldb] [lldb] Hoist UUID generation into the UUID class (PR #133662)

via lldb-commits lldb-commits at lists.llvm.org
Tue Apr 1 21:42:42 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 HEAD~1 HEAD --extensions cpp,h -- lldb/include/lldb/Utility/UUID.h lldb/source/Core/Telemetry.cpp lldb/source/Utility/UUID.cpp lldb/unittests/Utility/UUIDTest.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/lldb/source/Utility/UUID.cpp b/lldb/source/Utility/UUID.cpp
index 4d1962716..0af0c3837 100644
--- a/lldb/source/Utility/UUID.cpp
+++ b/lldb/source/Utility/UUID.cpp
@@ -15,10 +15,10 @@
 
 #include <cctype>
 #include <chrono>
+#include <climits>
 #include <cstdint>
 #include <cstdio>
 #include <cstring>
-#include <climits>
 #include <random>
 
 using namespace lldb_private;

``````````

</details>


https://github.com/llvm/llvm-project/pull/133662


More information about the lldb-commits mailing list