From 7da76a20c0dd5d55da245a549e03d50b4de03a82 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Mon, 30 Nov 2009 15:52:29 +0000 Subject: [PATCH] Fix odd declaration. llvm-svn: 90138 --- llvm/include/llvm/Support/GraphWriter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Support/GraphWriter.h b/llvm/include/llvm/Support/GraphWriter.h index d48dc78cfc28..28fa92f99e08 100644 --- a/llvm/include/llvm/Support/GraphWriter.h +++ b/llvm/include/llvm/Support/GraphWriter.h @@ -149,7 +149,7 @@ public: } std::string edgeSourceLabels; - raw_string_ostream::raw_string_ostream EdgeSourceLabels(edgeSourceLabels); + raw_string_ostream EdgeSourceLabels(edgeSourceLabels); bool hasEdgeSourceLabels = getEdgeSourceLabels(EdgeSourceLabels, Node); if (hasEdgeSourceLabels) {