Skip to content

Commit f2a8bcc

Browse files
committedJun 27, 2017
Move StructuredData from Core to Utility
Summary: It had a dependency on StringConvert and file reading code, which is not in Utility. I've replaced that code by equivalent llvm operations. I've added a unit test to demonstrate that parsing a file still works. Reviewers: zturner, jingham Subscribers: kubamracek, mgorny, lldb-commits Differential Revision: https://reviews.llvm.org/D34625 llvm-svn: 306394
1 parent 6a391bb commit f2a8bcc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+157
-155
lines changed
 

Diff for: ‎lldb/include/lldb/Breakpoint/Breakpoint.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
#include "lldb/Breakpoint/Stoppoint.h"
2727
#include "lldb/Core/Event.h"
2828
#include "lldb/Core/SearchFilter.h"
29-
#include "lldb/Core/StructuredData.h"
3029
#include "lldb/Utility/StringList.h"
30+
#include "lldb/Utility/StructuredData.h"
3131

3232
namespace lldb_private {
3333

Diff for: ‎lldb/include/lldb/Breakpoint/BreakpointOptions.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
// Other libraries and framework includes
1919
// Project includes
20-
#include "lldb/Core/StructuredData.h"
2120
#include "lldb/Utility/Baton.h"
2221
#include "lldb/Utility/StringList.h"
22+
#include "lldb/Utility/StructuredData.h"
2323
#include "lldb/lldb-private.h"
2424

2525
namespace lldb_private {

0 commit comments

Comments
 (0)
Please sign in to comment.