[clang-tidy] Fix 32bit platform MSVC

The previous fix only worked for 64bit MSVC, this one should fix all different
architectures.

llvm-svn: 316094
This commit is contained in:
Jonas Toth 2017-10-18 16:40:19 +00:00
parent 876b8ce52f
commit f00509c3a5
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 long;
using size_t = decltype(sizeof(void*));
using FILE = int;
void *malloc(size_t ByteCount);