[Lldb-commits] [lldb] r183039 - Use C-style include to match style in file (instead of C++ style)

Daniel Malea daniel.malea at intel.com
Fri May 31 13:21:39 PDT 2013


Author: dmalea
Date: Fri May 31 15:21:38 2013
New Revision: 183039

URL: http://llvm.org/viewvc/llvm-project?rev=183039&view=rev
Log:
Use C-style include to match style in file (instead of C++ style)
- as per review comment from Dimitry Andric!



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

Modified: lldb/trunk/source/Core/Mangled.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Mangled.cpp?rev=183039&r1=183038&r2=183039&view=diff
==============================================================================
--- lldb/trunk/source/Core/Mangled.cpp (original)
+++ lldb/trunk/source/Core/Mangled.cpp Fri May 31 15:21:38 2013
@@ -30,7 +30,7 @@
 #include "lldb/Core/Timer.h"
 #include <ctype.h>
 #include <string.h>
-#include <cstdlib>
+#include <stdlib.h>
 
 using namespace lldb_private;
 





More information about the lldb-commits mailing list