Basic: import OwningPtr<> into clang namespace

llvm-svn: 149798
This commit is contained in:
Dylan Noblesmith
2012-02-05 02:12:40 +00:00
parent 9ef84dde49
commit e27789991d
97 changed files with 219 additions and 215 deletions

View File

@@ -2059,9 +2059,9 @@ bool CompilerInvocation::CreateFromArgs(CompilerInvocation &Res,
bool Success = true;
// Parse the arguments.
llvm::OwningPtr<OptTable> Opts(createCC1OptTable());
OwningPtr<OptTable> Opts(createCC1OptTable());
unsigned MissingArgIndex, MissingArgCount;
llvm::OwningPtr<InputArgList> Args(
OwningPtr<InputArgList> Args(
Opts->ParseArgs(ArgBegin, ArgEnd,MissingArgIndex, MissingArgCount));
// Check for missing argument error.