[llvm] r250446 - Add a missing include of cstddef needed for size_t.

Adrian Prantl via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 15 12:41:55 PDT 2015


Author: adrian
Date: Thu Oct 15 14:41:54 2015
New Revision: 250446

URL: http://llvm.org/viewvc/llvm-project?rev=250446&view=rev
Log:
Add a missing include of cstddef needed for size_t.

Modified:
    llvm/trunk/lib/Support/Valgrind.cpp

Modified: llvm/trunk/lib/Support/Valgrind.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Valgrind.cpp?rev=250446&r1=250445&r2=250446&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Valgrind.cpp (original)
+++ llvm/trunk/lib/Support/Valgrind.cpp Thu Oct 15 14:41:54 2015
@@ -15,6 +15,7 @@
 
 #include "llvm/Support/Valgrind.h"
 #include "llvm/Config/config.h"
+#include <cstddef>
 
 #if HAVE_VALGRIND_VALGRIND_H
 #include <valgrind/valgrind.h>




More information about the llvm-commits mailing list