fix_linux.patch 849 B

123456789101112131415161718192021222324
  1. diff --git a/lzhamdecomp/lzham_huffman_codes.cpp b/lzhamdecomp/lzham_huffman_codes.cpp
  2. index 11bdbd4..75884cc 100644
  3. --- a/lzhamdecomp/lzham_huffman_codes.cpp
  4. +++ b/lzhamdecomp/lzham_huffman_codes.cpp
  5. @@ -2,6 +2,7 @@
  6. // LZHAM is in the Public Domain. Please see the Public Domain declaration at the end of include/lzham.h
  7. #include "lzham_core.h"
  8. #include "lzham_huffman_codes.h"
  9. +#include <cstdint>
  10. namespace lzham
  11. {
  12. diff --git a/lzhamdecomp/lzham_symbol_codec.h b/lzhamdecomp/lzham_symbol_codec.h
  13. index 306d59b..af773d5 100644
  14. --- a/lzhamdecomp/lzham_symbol_codec.h
  15. +++ b/lzhamdecomp/lzham_symbol_codec.h
  16. @@ -2,6 +2,7 @@
  17. // LZHAM is in the Public Domain. Please see the Public Domain declaration at the end of include/lzham.h
  18. #pragma once
  19. #include "lzham_prefix_coding.h"
  20. +#include <cstdint>
  21. namespace lzham
  22. {