diff options
author | Chris Lattner <sabre@nondot.org> | 2011-07-23 17:14:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-07-23 17:14:25 +0000 |
commit | 54b1677d23a3a5ab8029540cb29021b0e6c6b64b (patch) | |
tree | 02d71be946fa2199d5a86ec3d5553445356ee354 /clang/lib/Frontend/CreateInvocationFromCommandLine.cpp | |
parent | 7e6ca972c98956e5d438ad3ff840006fd650c71a (diff) | |
download | bcm5719-llvm-54b1677d23a3a5ab8029540cb29021b0e6c6b64b.tar.gz bcm5719-llvm-54b1677d23a3a5ab8029540cb29021b0e6c6b64b.zip |
Move ArrayRef to LLVM.h and eliminate now-redundant qualifiers, patch by Jon Mulder!
llvm-svn: 135855
Diffstat (limited to 'clang/lib/Frontend/CreateInvocationFromCommandLine.cpp')
-rw-r--r-- | clang/lib/Frontend/CreateInvocationFromCommandLine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp b/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp index fa34334b5d1..8fdc06db72c 100644 --- a/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp +++ b/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp @@ -29,7 +29,7 @@ using namespace clang; /// \return A CompilerInvocation, or 0 if none was built for the given /// argument vector. CompilerInvocation * -clang::createInvocationFromCommandLine(llvm::ArrayRef<const char *> ArgList, +clang::createInvocationFromCommandLine(ArrayRef<const char *> ArgList, llvm::IntrusiveRefCntPtr<Diagnostic> Diags) { if (!Diags.getPtr()) { // No diagnostics engine was provided, so create our own diagnostics object |