Fix error int64_t was not declared (#4419)

The <cstdint> header should be declared to use int64_t type based on https://www.cplusplus.com/reference/cstdint/ . 
This also fix error when compile on Alpine Linux.
This commit is contained in:
TheLazieR Yip 2021-09-13 23:56:35 +07:00 committed by GitHub
parent 738f154d26
commit dbe85d624f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,7 @@
#include <algorithm>
#include <cassert>
#include <cstdint>
#include <unordered_map>
#include <vector>