forked from OSchip/llvm-project
[clang-tidy] Fix buildbot for msvc
The testcase defined `FILE` as `unsigned long`, but MSVC expect `unsigned long long`. llvm-svn: 316093
This commit is contained in:
parent
c9aea86e6a
commit
876b8ce52f
|
@ -10,7 +10,7 @@ using owner = T;
|
|||
} // namespace gsl
|
||||
|
||||
extern "C" {
|
||||
using size_t = unsigned long;
|
||||
using size_t = unsigned long long;
|
||||
using FILE = int;
|
||||
|
||||
void *malloc(size_t ByteCount);
|
||||
|
|
Loading…
Reference in New Issue