summaryrefslogtreecommitdiffstats
path: root/clang/lib/Driver/Driver.cpp
diff options
context:
space:
mode:
authorDylan Noblesmith <nobled@dreamwidth.org>2012-02-05 02:12:40 +0000
committerDylan Noblesmith <nobled@dreamwidth.org>2012-02-05 02:12:40 +0000
commite27789991d575c2e6662961f2a57b2f5c3e8a9e3 (patch)
tree3038c972e5daee2cfd7e15f595902188aa8a2554 /clang/lib/Driver/Driver.cpp
parent9ef84dde4997d66069db99c3b5756be9ffdf4e0e (diff)
downloadbcm5719-llvm-e27789991d575c2e6662961f2a57b2f5c3e8a9e3.tar.gz
bcm5719-llvm-e27789991d575c2e6662961f2a57b2f5c3e8a9e3.zip
Basic: import OwningPtr<> into clang namespace
llvm-svn: 149798
Diffstat (limited to 'clang/lib/Driver/Driver.cpp')
-rw-r--r--clang/lib/Driver/Driver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp
index 89e06002a2b..6f93d0be25c 100644
--- a/clang/lib/Driver/Driver.cpp
+++ b/clang/lib/Driver/Driver.cpp
@@ -1061,7 +1061,7 @@ void Driver::BuildActions(const ToolChain &TC, const DerivedArgList &Args,
}
// Build the pipeline for this file.
- llvm::OwningPtr<Action> Current(new InputAction(*InputArg, InputType));
+ OwningPtr<Action> Current(new InputAction(*InputArg, InputType));
for (unsigned i = 0; i != NumSteps; ++i) {
phases::ID Phase = types::getCompilationPhase(InputType, i);
OpenPOWER on IntegriCloud