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:
Raphael Isemann 2018-07-02 22:18:18 +00:00
parent 8fc766681d
commit 9f02a94dad
2 changed files with 4 additions and 4 deletions

View File

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

View File

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