Skip to content

Commit

Permalink
Compilation fix for Apple
Browse files Browse the repository at this point in the history
  • Loading branch information
corporateshark committed Nov 25, 2023
1 parent 1d75d2a commit d1c511d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lvk/vulkan/VulkanClasses.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* LICENSE file in the root directory of this source tree.
*/

#include <malloc.h>

#include <cstring>
#include <deque>
#include <set>
Expand All @@ -28,6 +26,8 @@
#if defined(__APPLE__)
#include <MoltenVK/mvk_config.h>
#include <dlfcn.h>
#else
#include <malloc.h>
#endif

uint32_t lvk::VulkanPipelineBuilder::numPipelinesCreated_ = 0;
Expand Down

0 comments on commit d1c511d

Please sign in to comment.