diff options
Diffstat (limited to 'include/llvm/CodeGen/ValueSet.h')
-rw-r--r-- | include/llvm/CodeGen/ValueSet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/ValueSet.h b/include/llvm/CodeGen/ValueSet.h index 048d8df4c5..0c0aefad20 100644 --- a/include/llvm/CodeGen/ValueSet.h +++ b/include/llvm/CodeGen/ValueSet.h @@ -10,7 +10,7 @@ struct RAV { // Register Allocator Value const Value *V; RAV(const Value *v) : V(v) {} }; -ostream &operator<<(ostream &out, RAV Val); +std::ostream &operator<<(std::ostream &out, RAV Val); typedef std::set<const Value*> ValueSet; |