Skip to content

Commit

Permalink
wip!
Browse files Browse the repository at this point in the history
  • Loading branch information
xtqqczze committed Jul 19, 2024
1 parent 513b503 commit 5eec5ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libraries/System.Private.CoreLib/src/System/Guid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,14 @@ public Guid(int a, short b, short c, byte[] d)
_a = a;
_b = b;
_c = c;
_k = d[7]; // hoist bounds checks
_d = d[0];
_e = d[1];
_f = d[2];
_g = d[3];
_h = d[4];
_i = d[5];
_j = d[6];
_k = d[7];
}

// Creates a new GUID initialized to the value represented by the
Expand Down

0 comments on commit 5eec5ac

Please sign in to comment.