[Lldb-commits] [lldb] r129070 - /lldb/trunk/source/Utility/StringExtractor.cpp
Stephen Wilson
wilsons at start.ca
Thu Apr 7 03:20:23 PDT 2011
Author: wilsons
Date: Thu Apr 7 05:20:23 2011
New Revision: 129070
URL: http://llvm.org/viewvc/llvm-project?rev=129070&view=rev
Log:
Add a missing header
strtoul() is defined in stdlib.h and the header was missing in
StringExtractor.cpp.
Patch by Marco Minutoli!
Modified:
lldb/trunk/source/Utility/StringExtractor.cpp
Modified: lldb/trunk/source/Utility/StringExtractor.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Utility/StringExtractor.cpp?rev=129070&r1=129069&r2=129070&view=diff
==============================================================================
--- lldb/trunk/source/Utility/StringExtractor.cpp (original)
+++ lldb/trunk/source/Utility/StringExtractor.cpp Thu Apr 7 05:20:23 2011
@@ -10,6 +10,8 @@
#include "Utility/StringExtractor.h"
// C Includes
+#include <stdlib.h>
+
// C++ Includes
// Other libraries and framework includes
// Project includes
More information about the lldb-commits
mailing list