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 | aa39197431a0a0b1326ecf6b3be6a11f6e2f8503 (patch) | |
tree | d0c1bb58f1f4594fd501f4465a61ddc96e6d5e64 /Driver/HTMLPrint.cpp | |
parent | 6bdafbfec5ecc50151b1b66732b168a79cc47531 (diff) |
simplify ownership of the predefines buffer.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49973 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/HTMLPrint.cpp')
-rw-r--r-- | Driver/HTMLPrint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Driver/HTMLPrint.cpp b/Driver/HTMLPrint.cpp index b1c4c6d998..e6e6ab7edf 100644 --- a/Driver/HTMLPrint.cpp +++ b/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. |