Skip to content

Commit

Permalink
Change done to accommodate documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
LoghinVladDev committed May 15, 2022
1 parent 57d7a4f commit d668859
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/interface/customJob.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ extern MeshLoader_Result MeshLoader_Job_allocateMemory2 (
);

static inline MeshLoader_Result MeshLoader_Job_allocateMemory (
MeshLoader_Job_Context context,
MeshLoader_Job_Context jobContext,
MeshLoader_size size,
void ** ppMemory
) {
return MeshLoader_Job_allocateMemory2 (
context,
jobContext,
size,
1U,
ppMemory
Expand All @@ -92,13 +92,13 @@ extern MeshLoader_Result MeshLoader_Job_reallocateMemory2 (
);

static inline MeshLoader_Result MeshLoader_Job_reallocateMemory (
MeshLoader_Job_Context context,
MeshLoader_Job_Context jobContext,
void * pOldMemory,
MeshLoader_size newSize,
void ** ppMemory
) {
return MeshLoader_Job_reallocateMemory2 (
context,
jobContext,
pOldMemory,
newSize,
1U,
Expand Down

0 comments on commit d668859

Please sign in to comment.