We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d0d1f2 commit 4134592Copy full SHA for 4134592
lldb/include/lldb/Utility/UUID.h
@@ -28,7 +28,7 @@ class UUID {
28
UUID() = default;
29
30
/// Creates a uuid from the data pointed to by the bytes argument.
31
- UUID(llvm::ArrayRef<uint8_t> bytes) : m_bytes(bytes.begin(), bytes.end()) {
+ UUID(llvm::ArrayRef<uint8_t> bytes) : m_bytes(bytes) {
32
if (llvm::all_of(m_bytes, [](uint8_t b) { return b == 0; })) {
33
Clear();
34
}
0 commit comments