Skip to content

Commit 9f04f54

Browse files
committed
Remove some comments
1 parent 9c53fa7 commit 9f04f54

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

rt_entt_codegen/shared/parallel.cc

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
#include "ecsact/lang-support/lang-cc.hh"
66
#include "ecsact/cpp_codegen_plugin_util.hh"
77

8-
#include <iostream>
9-
108
struct loop_iterator_fields {
119
std::vector<ecsact_system_like_id>& system_list;
1210
const std::vector<ecsact_system_like_id>::iterator begin;
@@ -70,7 +68,6 @@ auto ecsact::rt_entt_codegen::parallel::print_parallel_system_executions(
7068
));
7169
}
7270
}
73-
ctx.write("\n");
7471
continue;
7572
}
7673

@@ -100,12 +97,11 @@ auto ecsact::rt_entt_codegen::parallel::print_parallel_system_executions(
10097
ctx.write("// ??? unhandled ??? ", cpp_decl_name, "\n");
10198
}
10299
}
103-
ctx.write("});\n\n");
100+
ctx.write("});\n");
104101
}
105102
}
106103

107104
auto is_capability_safe(ecsact_system_capability capability) -> bool {
108-
// List of components capabilities that can't be executed in parallel
109105
if(capability == ECSACT_SYS_CAP_ADDS ||
110106
capability == ECSACT_SYS_CAP_REMOVES ||
111107
capability == ECSACT_SYS_CAP_READWRITE ||
@@ -174,8 +170,6 @@ auto loop_iterator(
174170
} else {
175171
child_unsafe_comps.insert(child_comp_id);
176172
}
177-
// std::cout << " STUCK ON " << cpp_name << "COMPONENT IN THE "
178-
// << cpp_system_name << std::endl;
179173
}
180174
}
181175
}

0 commit comments

Comments
 (0)