commit | 49462255e92b03de36a013dd23845d9c8e35821c | [log] [tgz] |
---|---|---|
author | Benjamin Kramer <benny.kra@googlemail.com> | Mon Nov 30 15:52:29 2009 +0000 |
committer | Benjamin Kramer <benny.kra@googlemail.com> | Mon Nov 30 15:52:29 2009 +0000 |
tree | 9e3367f98dc1abe9e0e84c7b6cd92b44ea0a0e99 | |
parent | bf4ea99c2887e55d18206e093bccdc43636c9b1b [diff] |
Fix odd declaration. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90138 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/llvm/Support/GraphWriter.h b/include/llvm/Support/GraphWriter.h index d48dc78..28fa92f 100644 --- a/include/llvm/Support/GraphWriter.h +++ b/include/llvm/Support/GraphWriter.h
@@ -149,7 +149,7 @@ } std::string edgeSourceLabels; - raw_string_ostream::raw_string_ostream EdgeSourceLabels(edgeSourceLabels); + raw_string_ostream EdgeSourceLabels(edgeSourceLabels); bool hasEdgeSourceLabels = getEdgeSourceLabels(EdgeSourceLabels, Node); if (hasEdgeSourceLabels) {