package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
849 B
25 lines
849 B
1 year ago
|
diff --git a/lzhamdecomp/lzham_huffman_codes.cpp b/lzhamdecomp/lzham_huffman_codes.cpp
|
||
|
index 11bdbd4..75884cc 100644
|
||
|
--- a/lzhamdecomp/lzham_huffman_codes.cpp
|
||
|
+++ b/lzhamdecomp/lzham_huffman_codes.cpp
|
||
|
@@ -2,6 +2,7 @@
|
||
|
// LZHAM is in the Public Domain. Please see the Public Domain declaration at the end of include/lzham.h
|
||
|
#include "lzham_core.h"
|
||
|
#include "lzham_huffman_codes.h"
|
||
|
+#include <cstdint>
|
||
|
|
||
|
namespace lzham
|
||
|
{
|
||
|
diff --git a/lzhamdecomp/lzham_symbol_codec.h b/lzhamdecomp/lzham_symbol_codec.h
|
||
|
index 306d59b..af773d5 100644
|
||
|
--- a/lzhamdecomp/lzham_symbol_codec.h
|
||
|
+++ b/lzhamdecomp/lzham_symbol_codec.h
|
||
|
@@ -2,6 +2,7 @@
|
||
|
// LZHAM is in the Public Domain. Please see the Public Domain declaration at the end of include/lzham.h
|
||
|
#pragma once
|
||
|
#include "lzham_prefix_coding.h"
|
||
|
+#include <cstdint>
|
||
|
|
||
|
namespace lzham
|
||
|
{
|