[Lldb-commits] [lldb] r151535 - /lldb/trunk/source/Core/Stream.cpp

Benjamin Kramer benny.kra at googlemail.com
Mon Feb 27 10:46:54 PST 2012


Author: d0k
Date: Mon Feb 27 12:46:54 2012
New Revision: 151535

URL: http://llvm.org/viewvc/llvm-project?rev=151535&view=rev
Log:
Include stddef.h for ptrdiff_t, GCC 4.6 doesn't include it implicitly.

Modified:
    lldb/trunk/source/Core/Stream.cpp

Modified: lldb/trunk/source/Core/Stream.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Stream.cpp?rev=151535&r1=151534&r2=151535&view=diff
==============================================================================
--- lldb/trunk/source/Core/Stream.cpp (original)
+++ lldb/trunk/source/Core/Stream.cpp Mon Feb 27 12:46:54 2012
@@ -9,6 +9,7 @@
 
 #include "lldb/Core/Stream.h"
 #include "lldb/Host/Endian.h"
+#include <stddef.h>
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>





More information about the lldb-commits mailing list