diff options
| author | Martin Ridgers <[email protected]> | 2021-09-29 15:43:08 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-09-29 16:57:32 +0200 |
| commit | 1ff544358cca129bee1b9f60d1cc396751c2e1f6 (patch) | |
| tree | aaec1585c2042059ef37ff725a05b088b873cceb /zencore/blake3.cpp | |
| parent | Prevent mesh tests to crash by moving behind define. (diff) | |
| download | zen-1ff544358cca129bee1b9f60d1cc396751c2e1f6.tar.xz zen-1ff544358cca129bee1b9f60d1cc396751c2e1f6.zip | |
Fixed signed/unsigned mismatched warnings from GCC
Diffstat (limited to 'zencore/blake3.cpp')
| -rw-r--r-- | zencore/blake3.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/zencore/blake3.cpp b/zencore/blake3.cpp index 663f21b6d..5869f19a3 100644 --- a/zencore/blake3.cpp +++ b/zencore/blake3.cpp @@ -8,7 +8,9 @@ #include <zencore/zencore.h> #include "../3rdparty/BLAKE3/c/blake3.h" -#pragma comment(lib, "blake3.lib") +#if ZEN_PLATFORM_WINDOWS +# pragma comment(lib, "blake3.lib") +#endif #include <string.h> |