Skip to content

Commit 285cc9e

Browse files
committed
Fix incorrect parameter name in doxygen comment
1 parent bb5d296 commit 285cc9e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

distr/flecs.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
*/
41794179
FLECS_API
41804180
ecs_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.

include/flecs/private/api_defines.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

include/flecs/private/api_support.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ ecs_entity_t flecs_component_ids_get(
273273
*/
274274
FLECS_API
275275
ecs_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.

0 commit comments

Comments
 (0)