[Lldb-commits] [lldb] r128134 - in /lldb/trunk/source/Utility: StringExtractorGDBRemote.cpp StringExtractorGDBRemote.h
Stephen Wilson
wilsons at start.ca
Tue Mar 22 19:02:29 PDT 2011
Author: wilsons
Date: Tue Mar 22 21:02:29 2011
New Revision: 128134
URL: http://llvm.org/viewvc/llvm-project?rev=128134&view=rev
Log:
Add a missing include needed on Linux and remove a trailing comma.
Modified:
lldb/trunk/source/Utility/StringExtractorGDBRemote.cpp
lldb/trunk/source/Utility/StringExtractorGDBRemote.h
Modified: lldb/trunk/source/Utility/StringExtractorGDBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Utility/StringExtractorGDBRemote.cpp?rev=128134&r1=128133&r2=128134&view=diff
==============================================================================
--- lldb/trunk/source/Utility/StringExtractorGDBRemote.cpp (original)
+++ lldb/trunk/source/Utility/StringExtractorGDBRemote.cpp Tue Mar 22 21:02:29 2011
@@ -7,12 +7,13 @@
//
//===----------------------------------------------------------------------===//
-#include "Utility/StringExtractorGDBRemote.h"
-
// C Includes
+#include <string.h>
+
// C++ Includes
// Other libraries and framework includes
// Project includes
+#include "Utility/StringExtractorGDBRemote.h"
Modified: lldb/trunk/source/Utility/StringExtractorGDBRemote.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Utility/StringExtractorGDBRemote.h?rev=128134&r1=128133&r2=128134&view=diff
==============================================================================
--- lldb/trunk/source/Utility/StringExtractorGDBRemote.h (original)
+++ lldb/trunk/source/Utility/StringExtractorGDBRemote.h Tue Mar 22 21:02:29 2011
@@ -59,7 +59,7 @@
eNack,
eError,
eOK,
- eResponse,
+ eResponse
};
ResponseType
More information about the lldb-commits
mailing list