OSDN Git Service

fix typo, PR2181
authorChris Lattner <sabre@nondot.org>
Sun, 30 Mar 2008 16:59:21 +0000 (16:59 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 30 Mar 2008 16:59:21 +0000 (16:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48954 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CommandLine.html

index e34de17..76cc51c 100644 (file)
@@ -256,8 +256,8 @@ example:</p>
 
 <div class="doc_code"><pre>
   ...
-  ofstream Output(OutputFilename.c_str());
-  if (Out.good()) ...
+  std::ofstream Output(OutputFilename.c_str());
+  if (Output.good()) ...
   ...
 </pre></div>