forked from OSchip/llvm-project
[ValueList] Include Error.h (NFC)
Hopefully fixes clang-ppc64-aix. Apparently std::function can't be instantiated with a forward declared type in some environments.
This commit is contained in:
parent
2d70faa299
commit
f5bab24afe
|
@ -14,6 +14,7 @@
|
|||
#define LLVM_LIB_BITCODE_READER_VALUELIST_H
|
||||
|
||||
#include "llvm/IR/ValueHandle.h"
|
||||
#include "llvm/Support/Error.h"
|
||||
#include <cassert>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
@ -22,7 +23,6 @@ namespace llvm {
|
|||
|
||||
class Constant;
|
||||
class Error;
|
||||
template <typename T> class Expected;
|
||||
class Type;
|
||||
class Value;
|
||||
|
||||
|
|
Loading…
Reference in New Issue