[Lldb-commits] [lldb] r105711 - in /lldb/trunk: include/lldb/API/SBDebugger.h include/lldb/Core/Stream.h source/API/SBError.cpp
Eli Friedman
eli.friedman at gmail.com
Wed Jun 9 01:46:23 PDT 2010
Author: efriedma
Date: Wed Jun 9 03:46:23 2010
New Revision: 105711
URL: http://llvm.org/viewvc/llvm-project?rev=105711&view=rev
Log:
Per surrounding style, use stdarg.h instead of cstdio, etc.
Modified:
lldb/trunk/include/lldb/API/SBDebugger.h
lldb/trunk/include/lldb/Core/Stream.h
lldb/trunk/source/API/SBError.cpp
Modified: lldb/trunk/include/lldb/API/SBDebugger.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBDebugger.h?rev=105711&r1=105710&r2=105711&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBDebugger.h (original)
+++ lldb/trunk/include/lldb/API/SBDebugger.h Wed Jun 9 03:46:23 2010
@@ -11,7 +11,7 @@
#define LLDB_SBDebugger_h_
#include "lldb/API/SBDefines.h"
-#include <cstdio>
+#include <stdio.h>
namespace lldb {
Modified: lldb/trunk/include/lldb/Core/Stream.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/Stream.h?rev=105711&r1=105710&r2=105711&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/Stream.h (original)
+++ lldb/trunk/include/lldb/Core/Stream.h Wed Jun 9 03:46:23 2010
@@ -13,7 +13,7 @@
#include "lldb/lldb-private.h"
#include "lldb/Core/Flags.h"
-#include <cstdarg>
+#include <stdarg.h>
namespace lldb_private {
Modified: lldb/trunk/source/API/SBError.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/API/SBError.cpp?rev=105711&r1=105710&r2=105711&view=diff
==============================================================================
--- lldb/trunk/source/API/SBError.cpp (original)
+++ lldb/trunk/source/API/SBError.cpp Wed Jun 9 03:46:23 2010
@@ -9,7 +9,7 @@
#include "lldb/API/SBError.h"
#include "lldb/Core/Error.h"
-#include <cstdarg>
+#include <stdarg.h>
using namespace lldb;
using namespace lldb_private;
More information about the lldb-commits
mailing list