summaryrefslogtreecommitdiffstats
path: root/clang/lib/Rewrite/FrontendActions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib/Rewrite/FrontendActions.cpp')
-rw-r--r--clang/lib/Rewrite/FrontendActions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Rewrite/FrontendActions.cpp b/clang/lib/Rewrite/FrontendActions.cpp
index 49ae4ce1f2c..7e7790eea8d 100644
--- a/clang/lib/Rewrite/FrontendActions.cpp
+++ b/clang/lib/Rewrite/FrontendActions.cpp
@@ -112,9 +112,9 @@ bool FixItRecompile::BeginInvocation(CompilerInstance &CI) {
bool err = false;
{
const FrontendOptions &FEOpts = CI.getFrontendOpts();
- llvm::OwningPtr<FrontendAction> FixAction(new SyntaxOnlyAction());
+ OwningPtr<FrontendAction> FixAction(new SyntaxOnlyAction());
if (FixAction->BeginSourceFile(CI, FEOpts.Inputs[0])) {
- llvm::OwningPtr<FixItOptions> FixItOpts;
+ OwningPtr<FixItOptions> FixItOpts;
if (FEOpts.FixToTemporaries)
FixItOpts.reset(new FixItRewriteToTemp());
else
OpenPOWER on IntegriCloud