File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lldb/include/lldb/Utility Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class UUID {
28
28
public:
29
29
UUID () = default ;
30
30
31
- // / Creates a uuid from the data pointed to by the bytes argument.
31
+ // / Create a uuid from the data pointed to by the bytes argument.
32
32
UUID (llvm::ArrayRef<uint8_t > bytes) : m_bytes(bytes) {
33
33
if (llvm::all_of (m_bytes, [](uint8_t b) { return b == 0 ; })) {
34
34
Clear ();
@@ -51,7 +51,7 @@ class UUID {
51
51
// / Create a UUID from CvRecordPdb70.
52
52
UUID (CvRecordPdb70 debug_info);
53
53
54
- // / Creates a UUID from the data pointed to by the bytes argument.
54
+ // / Create a UUID from the data pointed to by the bytes argument.
55
55
UUID (const void *bytes, uint32_t num_bytes) {
56
56
if (!bytes)
57
57
return ;
@@ -88,7 +88,7 @@ class UUID {
88
88
DecodeUUIDBytesFromString (llvm::StringRef str,
89
89
llvm::SmallVectorImpl<uint8_t > &uuid_bytes);
90
90
91
- // / Generate a random UUID.
91
+ // / Create a random UUID.
92
92
static llvm::Expected<UUID> Generate ();
93
93
94
94
private:
You can’t perform that action at this time.
0 commit comments