Skip to content

Commit 9c471ce

Browse files
committed
chore: remove some debug stuff
1 parent 27f47d8 commit 9c471ce

File tree

3 files changed

+0
-28
lines changed

3 files changed

+0
-28
lines changed

rt_entt_codegen/core/print_sys_exec.cc

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -449,20 +449,6 @@ static auto print_sys_exec_ctx_generate(
449449
"component_data, entity);\n"
450450
);
451451
});
452-
453-
for(auto sys_id : get_all_sorted_systems()) {
454-
auto sys_details = ecsact_entt_system_details::from_system_like(sys_id);
455-
auto system_sorting_struct_name = std::format(
456-
"::ecsact::entt::detail::system_sorted<{}>",
457-
cpp_identifier(decl_full_name(sys_id))
458-
);
459-
460-
/* for(const auto& components : details.generate_comps) { */
461-
/* auto matches = 0; */
462-
/* for(const auto& [comp_id, requirements] : components) { */
463-
/* } */
464-
/* } */
465-
}
466452
}
467453

468454
static auto print_sys_exec_ctx_parent( //

rt_entt_codegen/core/system_markers.cc

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,6 @@ auto ecsact::rt_entt_codegen::core::print_system_marker_add_fn(
5858
system_sorting_struct_name,
5959
">(entity);"
6060
);
61-
62-
/* block( */
63-
/* ctx, */
64-
/* "if(::ecsact::entt::entity_matches_system<" + system_cpp_ident + */
65-
/* ">(reg, entity))", */
66-
/* [&] { */
67-
/* ctx.write( */
68-
/* "reg.emplace_or_replace<", */
69-
/* system_sorting_struct_name, */
70-
/* ">(entity);" */
71-
/* ); */
72-
/* } */
73-
/* ); */
7461
}
7562
}
7663
}

test/runtime_test.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ void runtime_test::OtherEntitySystem::impl(context& ctx) {
4545
}
4646

4747
void runtime_test::MakeAnother::impl(context& ctx) {
48-
std::cout << "MakeAnotherImpl\n";
4948
ctx._ctx.generate(ctx.get<ComponentA>(), ctx.get<ComponentB>());
5049
}
5150

0 commit comments

Comments
 (0)