修正 CentOS 6 下使用 devtoolset 8 编译问题

使用 inttypes.h 提供的 PRIu64 需要定义 __STDC_FORMAT_MACROS,
而 cinttypes 会定义该宏.

https://stackoverflow.com/a/8132440/5218590
This commit is contained in:
wxf 2020-12-17 20:43:38 +08:00
parent af6446507e
commit 2242f7ecc5

View File

@ -9,7 +9,7 @@
*/
#include <cstdlib>
#include <inttypes.h>
#include <cinttypes>
#include "HlsParser.h"
#include "Util/util.h"
#include "Common/Parser.h"