Skip to content

Commit 947c67e

Browse files
committed
sizes
1 parent 9833c66 commit 947c67e

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

components/datetime/src/lib.rs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -207,36 +207,36 @@ mod tests {
207207

208208
#[test]
209209
fn check_sizes() {
210-
check_size_of!(5784 | 4576, DateFormatter);
211-
check_size_of!(6784 | 5448, DateTimeFormatter);
212-
check_size_of!(7896 | 6464, ZonedDateTimeFormatter);
210+
check_size_of!(5800 | 4592, DateFormatter);
211+
check_size_of!(6792 | 5456, DateTimeFormatter);
212+
check_size_of!(7904 | 6480, ZonedDateTimeFormatter);
213213
check_size_of!(1496 | 1320, TimeFormatter);
214-
check_size_of!(1112 | 1016, TimeZoneFormatter);
215-
check_size_of!(5744 | 4536, TypedDateFormatter::<Gregorian>);
214+
check_size_of!(1112 | 1024, TimeZoneFormatter);
215+
check_size_of!(5752 | 4544, TypedDateFormatter::<Gregorian>);
216216
check_size_of!(6744 | 5408, TypedDateTimeFormatter::<Gregorian>);
217217

218218
check_size_of!(80, DateTimeError);
219219
check_size_of!(176, FormattedDateTime);
220220
check_size_of!(16, FormattedTimeZone::<CustomTimeZone>);
221221
check_size_of!(160, FormattedZonedDateTime);
222-
check_size_of!(13, DateTimeFormatterOptions);
222+
check_size_of!(2, DateTimeFormatterOptions);
223223

224224
type DP<M> = DataPayload<M>;
225225
check_size_of!(208, DP::<PatternPluralsFromPatternsV1Marker>);
226226
check_size_of!(1032 | 904, DP::<TimeSymbolsV1Marker>);
227-
check_size_of!(32, DP::<GenericPatternV1Marker>);
227+
check_size_of!(40, DP::<GenericPatternV1Marker>);
228228
check_size_of!(208, DP::<PatternPluralsFromPatternsV1Marker>);
229229
check_size_of!(5064 | 3904, DP::<ErasedDateSymbolsV1Marker>);
230230
check_size_of!(16, DP::<WeekDataV1Marker>);
231-
check_size_of!(288 | 224, DP::<TimeZoneFormatsV1Marker>);
231+
check_size_of!(288 | 232, DP::<TimeZoneFormatsV1Marker>);
232232
check_size_of!(64 | 56, DP::<ExemplarCitiesV1Marker>);
233-
check_size_of!(120 | 104, DP::<MetazoneGenericNamesLongV1Marker>);
234-
check_size_of!(120 | 104, DP::<MetazoneGenericNamesShortV1Marker>);
235-
check_size_of!(216 | 200, DP::<MetazoneSpecificNamesLongV1Marker>);
236-
check_size_of!(216 | 200, DP::<MetazoneSpecificNamesShortV1Marker>);
233+
check_size_of!(120 | 112, DP::<MetazoneGenericNamesLongV1Marker>);
234+
check_size_of!(120 | 112, DP::<MetazoneGenericNamesShortV1Marker>);
235+
check_size_of!(216 | 208, DP::<MetazoneSpecificNamesLongV1Marker>);
236+
check_size_of!(216 | 208, DP::<MetazoneSpecificNamesShortV1Marker>);
237237
check_size_of!(168, PluralRules);
238238
check_size_of!(256 | 208, FixedDecimalFormatter);
239-
check_size_of!(1024 | 928, TimeZoneDataPayloads);
239+
check_size_of!(1024 | 936, TimeZoneDataPayloads);
240240
check_size_of!(3, TimeZoneFormatterUnit);
241241
}
242242
}

0 commit comments

Comments
 (0)