forked from OSchip/llvm-project
Fix StringExtractor.h issues.
Summary: Fix StringExtractor.h issues. * source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp (#include "Utility/StringExtractor.h): Not needed, this is already included by ProcessKDP.h * unittests/Utility/StringExtractorTest.cpp (#include "Utility/StringExtractor.h): Update include path to the new location. Reviewers: labath, clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D10995 llvm-svn: 241596
This commit is contained in:
parent
e53b31a593
commit
28529f607c
|
@ -46,7 +46,6 @@
|
|||
#include "ThreadKDP.h"
|
||||
#include "Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.h"
|
||||
#include "Plugins/DynamicLoader/Static/DynamicLoaderStatic.h"
|
||||
#include "Utility/StringExtractor.h"
|
||||
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include <limits.h>
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
#include "Utility/StringExtractor.h"
|
||||
#include "lldb/Utility/StringExtractor.h"
|
||||
|
||||
namespace
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue