diff options
author | Nico Weber <nicolasweber@gmx.de> | 2012-07-11 16:15:04 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2012-07-11 16:15:04 +0000 |
commit | 6320b5213e080c6f02d3e1155131c6f21fd26bcc (patch) | |
tree | c510d0d80136acd5356e3180e196158f0d057543 | |
parent | 5fafdd9d1ddd982224db84699484d76000943c02 (diff) | |
download | bcm5719-llvm-6320b5213e080c6f02d3e1155131c6f21fd26bcc.tar.gz bcm5719-llvm-6320b5213e080c6f02d3e1155131c6f21fd26bcc.zip |
Remove unused override of CompilerInvocation::setLangDefaults().
llvm-svn: 160051
-rw-r--r-- | clang/include/clang/Frontend/CompilerInvocation.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/clang/include/clang/Frontend/CompilerInvocation.h b/clang/include/clang/Frontend/CompilerInvocation.h index fc3ab1017f2..d6fe003da0f 100644 --- a/clang/include/clang/Frontend/CompilerInvocation.h +++ b/clang/include/clang/Frontend/CompilerInvocation.h @@ -132,16 +132,6 @@ public: void toArgs(std::vector<std::string> &Res) const; /// \brief Set language defaults for the given input language and - /// language standard in this CompilerInvocation. - /// - /// \param IK - The input language. - /// \param LangStd - The input language standard. - void setLangDefaults(InputKind IK, - LangStandard::Kind LangStd = LangStandard::lang_unspecified) { - setLangDefaults(*getLangOpts(), IK, LangStd); - } - - /// \brief Set language defaults for the given input language and /// language standard in the given LangOptions object. /// /// \param Opts - The LangOptions object to set up. |