Skip to content

Commit

Permalink
examples: introspect: Use as_built_in_layout()
Browse files Browse the repository at this point in the history
  • Loading branch information
dennis-hamester committed Nov 18, 2024
1 parent 62a1538 commit eab1f7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/introspect/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ async fn query_full(bus: &Handle, type_id: TypeId) -> Result<()> {
print_introspection(&introspection, &db, true);

for introspection in db.values() {
if (introspection.type_id() != type_id) && introspection.layout().as_built_in().is_none() {
if (introspection.type_id() != type_id) && introspection.as_built_in_layout().is_none() {
print_introspection(introspection, &db, true);
}
}
Expand Down

0 comments on commit eab1f7d

Please sign in to comment.