[Lldb-commits] [lldb] r191390 - When using va_list, include cstdarg/stdarg.h.

Joerg Sonnenberger joerg at bec.de
Wed Sep 25 10:58:24 PDT 2013


Author: joerg
Date: Wed Sep 25 12:58:23 2013
New Revision: 191390

URL: http://llvm.org/viewvc/llvm-project?rev=191390&view=rev
Log:
When using va_list, include cstdarg/stdarg.h.

Modified:
    lldb/trunk/include/lldb/Core/Error.h
    lldb/trunk/include/lldb/Core/Log.h
    lldb/trunk/include/lldb/Host/File.h

Modified: lldb/trunk/include/lldb/Core/Error.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/Error.h?rev=191390&r1=191389&r2=191390&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/Error.h (original)
+++ lldb/trunk/include/lldb/Core/Error.h Wed Sep 25 12:58:23 2013
@@ -13,6 +13,7 @@
 
 #include "llvm/Support/DataTypes.h"
 
+#include <cstdarg>
 #include <cstdio>
 #include <string>
 

Modified: lldb/trunk/include/lldb/Core/Log.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/Log.h?rev=191390&r1=191389&r2=191390&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/Log.h (original)
+++ lldb/trunk/include/lldb/Core/Log.h Wed Sep 25 12:58:23 2013
@@ -11,6 +11,7 @@
 #define liblldb_Log_h_
 
 // C Includes
+#include <stdarg.h>
 #include <stdint.h>
 #include <signal.h>
 #include <stdio.h>

Modified: lldb/trunk/include/lldb/Host/File.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Host/File.h?rev=191390&r1=191389&r2=191390&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Host/File.h (original)
+++ lldb/trunk/include/lldb/Host/File.h Wed Sep 25 12:58:23 2013
@@ -11,6 +11,7 @@
 #define liblldb_File_h_
 #if defined(__cplusplus)
 
+#include <stdarg.h>
 #include <stdio.h>
 #include <sys/types.h>
 





More information about the lldb-commits mailing list