r336261 - Add missing include for size_t

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 4 04:14:18 PDT 2018


Author: ericwf
Date: Wed Jul  4 04:14:18 2018
New Revision: 336261

URL: http://llvm.org/viewvc/llvm-project?rev=336261&view=rev
Log:
Add missing include for size_t

Modified:
    cfe/trunk/include/clang/Basic/Stack.h

Modified: cfe/trunk/include/clang/Basic/Stack.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/Stack.h?rev=336261&r1=336260&r2=336261&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/Stack.h (original)
+++ cfe/trunk/include/clang/Basic/Stack.h Wed Jul  4 04:14:18 2018
@@ -15,6 +15,8 @@
 #ifndef LLVM_CLANG_BASIC_STACK_H
 #define LLVM_CLANG_BASIC_STACK_H
 
+#include <cstddef>
+
 namespace clang {
   /// The amount of stack space that Clang would like to be provided with.
   /// If less than this much is available, we may be unable to reach our




More information about the cfe-commits mailing list