We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78b8430 commit 69106c3Copy full SHA for 69106c3
benches/benches/bevy_reflect/struct.rs
@@ -148,14 +148,14 @@ fn concrete_struct_type_info(criterion: &mut Criterion) {
148
BenchmarkId::new("NonGeneric", field_count),
149
&standard,
150
|bencher, s| {
151
- bencher.iter(|| black_box(s.get_type_info()));
+ bencher.iter(|| black_box(s.get_represented_type_info()));
152
},
153
);
154
group.bench_with_input(
155
BenchmarkId::new("Generic", field_count),
156
&generic,
157
158
159
160
161
}
0 commit comments