From 484959a26c097968e9b331b5063cda788ae1e034 Mon Sep 17 00:00:00 2001 From: Torok Edwin Date: Wed, 4 Aug 2010 09:30:20 +0000 Subject: [PATCH] Fix build of DataFlow.h git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110193 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/DataFlow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/DataFlow.h b/include/llvm/Support/DataFlow.h index 8f79ead1c53..355c402f542 100644 --- a/include/llvm/Support/DataFlow.h +++ b/include/llvm/Support/DataFlow.h @@ -25,7 +25,7 @@ namespace llvm { template <> struct GraphTraits { typedef const Value NodeType; - typedef Value::use_const_iterator ChildIteratorType; + typedef Value::const_use_iterator ChildIteratorType; static NodeType *getEntryNode(const Value *G) { return G; -- 2.34.1