diff options
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/WritingAnLLVMPass.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/WritingAnLLVMPass.html b/llvm/docs/WritingAnLLVMPass.html index 5d8b1c10490..047ac6ef2d5 100644 --- a/llvm/docs/WritingAnLLVMPass.html +++ b/llvm/docs/WritingAnLLVMPass.html @@ -977,7 +977,7 @@ implement the virtual <tt>print</tt> method:</p> <div class="doc_text"> <div class="doc_code"><pre> - <b>virtual void</b> print(llvm::OStream &O, <b>const</b> Module *M) <b>const</b>; + <b>virtual void</b> print(std::ostream &O, <b>const</b> Module *M) <b>const</b>; </pre></div> <p>The <tt>print</tt> method must be implemented by "analyses" in order to print |