Skip to content

Commit

Permalink
SanderMertens#70 Fixed mising const from implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
rishubn committed Nov 9, 2019
1 parent 426081b commit 59d43cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,4 @@ gcov
/build/.vs/flecs/v16/ipch/AutoPCH/4d760fe01d80ebc4/WORLD.ipch
/build/.vs/flecs/v16/ipch/AutoPCH/1a91898c113228b0/WORKER.ipch
/build/.vs/flecs/v16/ipch/AutoPCH/12c837dbdc301675/OS_API.ipch
/build/.vs/flecs/v16/ipch/AutoPCH/7a29093f03663f7c/CHUNKED.ipch
2 changes: 1 addition & 1 deletion src/map.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ void* ecs_map_get_ptr(
bool _ecs_map_has(
ecs_map_t *map,
uint64_t key_hash,
void *value_out,
const void *value_out,
uint32_t size)
{
(void)size;
Expand Down

0 comments on commit 59d43cf

Please sign in to comment.