diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-03-18 18:19:46 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-03-18 18:19:46 +0000 |
commit | 26adbe42d1fecd135dea6739ec2801f02473218f (patch) | |
tree | eac927229b5fdf024c623848e4ec5bbeaaf9a84c /include/clang/Driver | |
parent | af370e6e051e505016637e23418354db625dc796 (diff) |
Remove unused argument.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177303 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Driver')
-rw-r--r-- | include/clang/Driver/ToolChain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Driver/ToolChain.h b/include/clang/Driver/ToolChain.h index 78ca4d2df6..4a81bdcc30 100644 --- a/include/clang/Driver/ToolChain.h +++ b/include/clang/Driver/ToolChain.h @@ -114,7 +114,7 @@ public: /// SelectTool - Choose a tool to use to handle the action \p JA with the /// given \p Inputs. - virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const = 0; + virtual Tool &SelectTool(const JobAction &JA) const = 0; // Helper methods |