We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06d1c64 commit a516836Copy full SHA for a516836
Commands/Utilities/ValueTransformers.mm
@@ -75,7 +75,7 @@ - (id)transformedValue:(id)value
75
- (id)reverseTransformedValue:(id)value
76
{
77
NSMutableArray* array = [NSMutableArray array];
78
- unsigned int buf[[value count]];
+ NSUInteger buf[[value count]];
79
[(NSIndexSet*)value getIndexes:buf maxCount:[value count] inIndexRange:nil];
80
for(unsigned int i = 0; i != [value count]; i++)
81
[array addObject:[NSNumber numberWithUnsignedInt:buf[i]]];
0 commit comments