[llvm-commits] [llvm] r90138 - /llvm/trunk/include/llvm/Support/GraphWriter.h
Benjamin Kramer
benny.kra at googlemail.com
Mon Nov 30 07:52:29 PST 2009
Author: d0k
Date: Mon Nov 30 09:52:29 2009
New Revision: 90138
URL: http://llvm.org/viewvc/llvm-project?rev=90138&view=rev
Log:
Fix odd declaration.
Modified:
llvm/trunk/include/llvm/Support/GraphWriter.h
Modified: llvm/trunk/include/llvm/Support/GraphWriter.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/GraphWriter.h?rev=90138&r1=90137&r2=90138&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/GraphWriter.h (original)
+++ llvm/trunk/include/llvm/Support/GraphWriter.h Mon Nov 30 09:52:29 2009
@@ -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) {
More information about the llvm-commits
mailing list