[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:
Jonas Toth 2017-10-18 16:28:06 +00:00
parent c9aea86e6a
commit 876b8ce52f
1 changed files with 1 additions and 1 deletions

View File

@ -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);