forked from OSchip/llvm-project
Fixed compilation failure after the code completion refactor patch
Subscribers: lldb-commits Differential Revision: https://reviews.llvm.org/D48855 llvm-svn: 336149
This commit is contained in:
parent
8fc766681d
commit
9f02a94dad
|
@ -16,7 +16,7 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include <lldb/Utility/CompletionRequest.h>
|
||||
#include "lldb/Utility/CompletionRequest.h"
|
||||
|
||||
// Other libraries and framework includes
|
||||
// Project includes
|
||||
|
|
|
@ -10,9 +10,9 @@
|
|||
#ifndef LLDB_UTILITY_COMPLETIONREQUEST_H
|
||||
#define LLDB_UTILITY_COMPLETIONREQUEST_H
|
||||
|
||||
#include <lldb/Utility/Args.h>
|
||||
#include <lldb/Utility/StringList.h>
|
||||
#include <llvm/ADT/StringRef.h>
|
||||
#include "lldb/Utility/Args.h"
|
||||
#include "lldb/Utility/StringList.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
|
||||
namespace lldb_private {
|
||||
|
||||
|
|
Loading…
Reference in New Issue