mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 20:30:05 +00:00
Fixing macro VMA_VALIDATE for Linux compilation.
This commit is contained in:
parent
02246f3eb8
commit
6aa6255741
@ -4746,7 +4746,7 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
#define VMA_VALIDATE(cond) do { if(!(cond)) { \
|
#define VMA_VALIDATE(cond) do { if(!(cond)) { \
|
||||||
VMA_ASSERT(0 && "Validation failed: " ## #cond); \
|
VMA_ASSERT(0 && "Validation failed: " #cond); \
|
||||||
return false; \
|
return false; \
|
||||||
} } while(false)
|
} } while(false)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user