diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-19 20:32:38 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-19 20:32:38 +0000 |
commit | 44ba7bf54434be88bda7a752f857d42cc92b462d (patch) | |
tree | f0b5090bd82e478e13fb31e46f27421733cfa2ba /lib/Rewrite/HTMLRewrite.cpp | |
parent | 90b504aee59662d0a2827f1e6ffe6493cab338ca (diff) |
Remove now unnecessary helper methods.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79460 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Rewrite/HTMLRewrite.cpp')
-rw-r--r-- | lib/Rewrite/HTMLRewrite.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Rewrite/HTMLRewrite.cpp b/lib/Rewrite/HTMLRewrite.cpp index a17dde8254..925fa55312 100644 --- a/lib/Rewrite/HTMLRewrite.cpp +++ b/lib/Rewrite/HTMLRewrite.cpp @@ -339,10 +339,10 @@ void html::AddHeaderFooterInternalBuiltinCSS(Rewriter& R, FileID FID, "</style>\n</head>\n<body>"; // Generate header - R.InsertStrBefore(StartLoc, os.str()); + R.InsertTextBefore(StartLoc, os.str()); // Generate footer - R.InsertCStrAfter(EndLoc, "</body></html>\n"); + R.InsertTextAfter(EndLoc, "</body></html>\n"); } /// SyntaxHighlight - Relex the specified FileID and annotate the HTML with |