llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Kazu Hirata (kazutakahirata) <details> <summary>Changes</summary> --- Full diff: https://github.com/llvm/llvm-project/pull/102793.diff 1 Files Affected: - (modified) lldb/include/lldb/Utility/UUID.h (+1-1) ``````````diff diff --git a/lldb/include/lldb/Utility/UUID.h b/lldb/include/lldb/Utility/UUID.h index 66058d482f012f..bc4b4acd5a7d8f 100644 --- a/lldb/include/lldb/Utility/UUID.h +++ b/lldb/include/lldb/Utility/UUID.h @@ -28,7 +28,7 @@ class UUID { UUID() = default; /// Creates a uuid from the data pointed to by the bytes argument. - UUID(llvm::ArrayRef<uint8_t> bytes) : m_bytes(bytes.begin(), bytes.end()) { + UUID(llvm::ArrayRef<uint8_t> bytes) : m_bytes(bytes) { if (llvm::all_of(m_bytes, [](uint8_t b) { return b == 0; })) { Clear(); } `````````` </details> https://github.com/llvm/llvm-project/pull/102793 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits