diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-30 16:59:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-30 16:59:21 +0000 |
commit | a01203e0478388762f78b6962cedab2fee83c350 (patch) | |
tree | 9276883b47c258ef88e3a68b86196f1f25893ea3 /llvm/docs | |
parent | ca3c28bd588ce84d5b297b1fdcc504e235926b79 (diff) | |
download | bcm5719-llvm-a01203e0478388762f78b6962cedab2fee83c350.tar.gz bcm5719-llvm-a01203e0478388762f78b6962cedab2fee83c350.zip |
fix typo, PR2181
llvm-svn: 48954
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/CommandLine.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/CommandLine.html b/llvm/docs/CommandLine.html index e34de17faa2..76cc51ce203 100644 --- a/llvm/docs/CommandLine.html +++ b/llvm/docs/CommandLine.html @@ -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> |