Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
flobernd committed Jan 25, 2022
1 parent 9a305f6 commit b4949cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions examples/Vector.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ static ZyanStatus PerformBasicTests(ZyanVector* vector)
{
InitTestdata(&e_v, i);
ZYAN_CHECK(ZyanVectorPushBack(vector, &e_v));
printf("i=%d cap=%" PRIuPTR, i, vector->capacity);
}

// Remove elements `#05..#09`
Expand Down
2 changes: 1 addition & 1 deletion include/Zycore/Types.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ ZYAN_STATIC_ASSERT((ZyanI64)-1 >> 1 < (ZyanI64)((ZyanU64)-1 >> 1));
/**
* Defines the `ZyanVoidPointer` data-type.
*/
typedef char* ZyanVoidPointer;
typedef void* ZyanVoidPointer;

/**
* Defines the `ZyanConstVoidPointer` data-type.
Expand Down

0 comments on commit b4949cc

Please sign in to comment.