summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis/LiveVar/ValueSet.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Analysis/LiveVar/ValueSet.h')
-rw-r--r--include/llvm/Analysis/LiveVar/ValueSet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/LiveVar/ValueSet.h b/include/llvm/Analysis/LiveVar/ValueSet.h
index 048d8df4c5..0c0aefad20 100644
--- a/include/llvm/Analysis/LiveVar/ValueSet.h
+++ b/include/llvm/Analysis/LiveVar/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;