diff options
author | Juan Ramos <[email protected]> | 2022-11-07 17:44:31 -0700 |
---|---|---|
committer | Juan Ramos <[email protected]> | 2022-11-07 17:48:05 -0700 |
commit | 1661f3e962f568b6f9b5890524705a4431adc597 (patch) | |
tree | 64b5d19f120ee9687f92a7a892cdfdf232a28c70 /include | |
parent | 91388ba10409c3a3bf5517de5fed7f2d989930f9 (diff) | |
download | Vulkan-Headers-1661f3e962f568b6f9b5890524705a4431adc597.tar.gz Vulkan-Headers-1661f3e962f568b6f9b5890524705a4431adc597.zip |
includes: Guard against multiple NOMINMAX
Diffstat (limited to 'include')
-rw-r--r-- | include/vulkan/vk_sdk_platform.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vulkan/vk_sdk_platform.h b/include/vulkan/vk_sdk_platform.h index 96d8676..f192c1c 100644 --- a/include/vulkan/vk_sdk_platform.h +++ b/include/vulkan/vk_sdk_platform.h @@ -23,7 +23,9 @@ #define VK_SDK_PLATFORM_H #if defined(_WIN32) +#ifndef NOMINMAX #define NOMINMAX +#endif #ifndef __cplusplus #undef inline #define inline __inline |