Let's get those buildbots green: #include is needed in the header, not just the implementation.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108912 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Owen Anderson 2010-07-20 20:16:11 +00:00
parent bda0252639
commit 8238f02650
2 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,6 @@
#include "llvm/MC/MCParser/MCAsmLexer.h"
#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/System/DataTypes.h"
using namespace llvm;
EDToken::EDToken(StringRef str,

View File

@ -17,6 +17,7 @@
#define LLVM_EDTOKEN_H
#include "llvm/ADT/StringRef.h"
#include "llvm/System/DataTypes.h"
#include <string>
#include <vector>