Commit 350e2624 by Per-Arne Andersen Committed by GitHub

Added support for GCC 13 (#2452)

GCC Does not explicitly include stdint. This update includes them where needed.
A very minor change that would allow GCC13 and above to compile
correctly. In newer versions, cstdint is not implicitly included, hence
it errors out during compilation for some files.
parent 7ef39d1b
......@@ -13,7 +13,7 @@
#include <iostream>
#include <string>
#include <cstdint>
namespace mediakit {
class strCoding {
......
......@@ -14,6 +14,7 @@
#include <string>
#include <deque>
#include <tuple>
#include <cstdint>
namespace mediakit {
......
......@@ -16,6 +16,7 @@
#include <vector>
#include <map>
#include <functional>
#include <cstdint>
namespace toolkit {
class BufferLikeString;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论