diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-19 23:09:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-19 23:09:31 +0000 |
commit | ba1f37bfdf5e899f3c4a988fda94757d94540f96 (patch) | |
tree | 6e2afa5b746284928ac37151ce717667b1243769 /clang/Driver/HTMLPrint.cpp | |
parent | 0f103e1304d28c4b8e2da7cd406cdd9412d720db (diff) | |
download | bcm5719-llvm-ba1f37bfdf5e899f3c4a988fda94757d94540f96.tar.gz bcm5719-llvm-ba1f37bfdf5e899f3c4a988fda94757d94540f96.zip |
simplify ownership of the predefines buffer.
llvm-svn: 49973
Diffstat (limited to 'clang/Driver/HTMLPrint.cpp')
-rw-r--r-- | clang/Driver/HTMLPrint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/Driver/HTMLPrint.cpp b/clang/Driver/HTMLPrint.cpp index b1c4c6d998f..e6e6ab7edf7 100644 --- a/clang/Driver/HTMLPrint.cpp +++ b/clang/Driver/HTMLPrint.cpp @@ -67,7 +67,7 @@ HTMLPrinter::~HTMLPrinter() { // for example. if (PP) html::SyntaxHighlight(R, FileID, *PP); - if (PPF) html::HighlightMacros(R, FileID, *PP); + if (PPF) html::HighlightMacros(R, FileID, *PP); html::EscapeText(R, FileID, false, true); // Open the output. |