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:
Bruce Mitchener 2015-07-07 15:19:03 +00:00
parent e53b31a593
commit 28529f607c
2 changed files with 1 additions and 2 deletions

View File

@ -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;

View File

@ -1,7 +1,7 @@
#include <limits.h>
#include "gtest/gtest.h"
#include "Utility/StringExtractor.h"
#include "lldb/Utility/StringExtractor.h"
namespace
{