We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6277abb commit c7d1b58Copy full SHA for c7d1b58
premake/premake5.lua
@@ -61,6 +61,7 @@ buildoptions { "/MD" }
61
62
63
project "VmaReplay"
64
+removeplatforms { "Linux-x64" }
65
kind "ConsoleApp"
66
language "C++"
67
location "../build"
src/VmaUsage.h
@@ -36,9 +36,18 @@ include all public interface declarations. Example:
36
37
#else // #ifdef _WIN32
38
39
+#ifdef __clang__
40
+ #pragma clang diagnostic push
41
+ #pragma clang diagnostic ignored "-Wtautological-compare" // comparison of unsigned expression < 0 is always false
42
+#endif
43
+
44
#include <vulkan/vulkan.h>
45
#include "vk_mem_alloc.h"
46
47
48
+ #pragma clang diagnostic pop
49
50
51
#endif // #ifdef _WIN32
52
53
#endif
0 commit comments