Skip to content

Commit 0152072

Browse files
author
DaZombieKiller
committed
Add newline before comments in DangerousGetReferenceAt
1 parent 55fbf93 commit 0152072

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Microsoft.Toolkit.HighPerformance/Enumerables/ReadOnlyRefEnumerable{T}.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ internal ref readonly T DangerousGetReferenceAt(int index)
184184
#else
185185
ref T r0 = ref RuntimeHelpers.GetObjectDataAtOffsetOrPointerReference<T>(this.instance, this.offset);
186186
#endif
187+
187188
// Here we just offset by shifting down as if we were traversing a 2D array with a
188189
// a single column, with the width of each row represented by the step, the height
189190
// represented by the current position, and with only the first element of each row

Microsoft.Toolkit.HighPerformance/Enumerables/RefEnumerable{T}.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ internal ref T DangerousGetReferenceAt(int index)
184184
#else
185185
ref T r0 = ref RuntimeHelpers.GetObjectDataAtOffsetOrPointerReference<T>(this.Instance, this.Offset);
186186
#endif
187+
187188
// Here we just offset by shifting down as if we were traversing a 2D array with a
188189
// a single column, with the width of each row represented by the step, the height
189190
// represented by the current position, and with only the first element of each row

0 commit comments

Comments
 (0)