[llvm-commits] [llvm] r48954 - /llvm/trunk/docs/CommandLine.html

Chris Lattner sabre at nondot.org
Sun Mar 30 09:59:21 PDT 2008


Author: lattner
Date: Sun Mar 30 11:59:21 2008
New Revision: 48954

URL: http://llvm.org/viewvc/llvm-project?rev=48954&view=rev
Log:
fix typo, PR2181

Modified:
    llvm/trunk/docs/CommandLine.html

Modified: llvm/trunk/docs/CommandLine.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandLine.html?rev=48954&r1=48953&r2=48954&view=diff

==============================================================================
--- llvm/trunk/docs/CommandLine.html (original)
+++ llvm/trunk/docs/CommandLine.html Sun Mar 30 11:59:21 2008
@@ -256,8 +256,8 @@
 
 <div class="doc_code"><pre>
   ...
-  ofstream Output(OutputFilename.c_str());
-  if (Out.good()) ...
+  std::ofstream Output(OutputFilename.c_str());
+  if (Output.good()) ...
   ...
 </pre></div>
 





More information about the llvm-commits mailing list