We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f18f794 commit 27452a3Copy full SHA for 27452a3
test/cpp/src/Module.cpp
@@ -117,12 +117,12 @@ namespace ns_parent {
117
}
118
119
120
-struct module_same_name_component { };
+struct module_a_component { };
121
122
-class module_same_name {
+class module_a {
123
public:
124
- module_same_name(flecs::world &world) {
125
- world.component<module_same_name_component>();
+ module_a(flecs::world &world) {
+ world.component<module_a_component>();
126
127
};
128
@@ -558,7 +558,7 @@ void Module_reimport_after_delete(void) {
558
559
void Module_same_name_prefix_component_registration(void) {
560
flecs::world world;
561
- world.import<module_same_name>();
+ world.import<module_a>();
562
563
//test_assert
564
0 commit comments