File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -425,7 +425,7 @@ for testIndex in (0..<bufCount) {
425
425
defer { allocated.deallocate() }
426
426
427
427
let buffer = ${Type}(start: allocated, count: bufCount)
428
- ${'var' if mutable and action <> 'read' else 'let'} slice = buffer[sliceRange]
428
+ ${'var' if mutable and action != 'read' else 'let'} slice = buffer[sliceRange]
429
429
430
430
if _isDebugAssertConfiguration(),
431
431
testIndex < sliceRange.lowerBound ||
@@ -466,7 +466,7 @@ for testRange in testRanges {
466
466
defer { allocated.deallocate() }
467
467
468
468
let buffer = ${Type}(start: allocated, count: bufCount+2)
469
- ${'var' if mutable and action <> 'read' else 'let'} slice = buffer[sliceRange]
469
+ ${'var' if mutable and action != 'read' else 'let'} slice = buffer[sliceRange]
470
470
471
471
if _isDebugAssertConfiguration(),
472
472
testRange.lowerBound < sliceRange.lowerBound ||
You can’t perform that action at this time.
0 commit comments