File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -893,7 +893,7 @@ typedef struct ecs_allocator_t ecs_allocator_t;
893893 #if defined(ECS_TARGET_CLANG) || defined(ECS_TARGET_GCC)
894894 #define FLECS_ALWAYS_INLINE __attribute__((always_inline))
895895 #elif defined(ECS_TARGET_MSVC)
896- #define FLECS_ALWAYS_INLINE __forceinline
896+ #define FLECS_ALWAYS_INLINE
897897 #else
898898 #define FLECS_ALWAYS_INLINE
899899 #endif
@@ -4178,7 +4178,7 @@ ecs_entity_t flecs_component_ids_get(
41784178 */
41794179FLECS_API
41804180ecs_entity_t flecs_component_ids_get_alive(
4181- const ecs_world_t *stage_world ,
4181+ const ecs_world_t *world ,
41824182 int32_t index);
41834183
41844184/** Set world local component id.
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ typedef struct ecs_allocator_t ecs_allocator_t;
262262 #if defined(ECS_TARGET_CLANG ) || defined(ECS_TARGET_GCC )
263263 #define FLECS_ALWAYS_INLINE __attribute__((always_inline))
264264 #elif defined(ECS_TARGET_MSVC )
265- #define FLECS_ALWAYS_INLINE __forceinline
265+ #define FLECS_ALWAYS_INLINE
266266 #else
267267 #define FLECS_ALWAYS_INLINE
268268 #endif
Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ ecs_entity_t flecs_component_ids_get(
273273 */
274274FLECS_API
275275ecs_entity_t flecs_component_ids_get_alive (
276- const ecs_world_t * stage_world ,
276+ const ecs_world_t * world ,
277277 int32_t index );
278278
279279/** Set world local component id.
You can’t perform that action at this time.
0 commit comments