From: Nico Weber Date: Wed, 11 Jul 2012 16:15:04 +0000 (+0000) Subject: Remove unused override of CompilerInvocation::setLangDefaults(). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=202c0541b69cab612bf0aceb49ddd8bb11199c8d;p=clang Remove unused override of CompilerInvocation::setLangDefaults(). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160051 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Frontend/CompilerInvocation.h b/include/clang/Frontend/CompilerInvocation.h index fc3ab1017f..d6fe003da0 100644 --- a/include/clang/Frontend/CompilerInvocation.h +++ b/include/clang/Frontend/CompilerInvocation.h @@ -131,16 +131,6 @@ public: /// passing to CreateFromArgs. void toArgs(std::vector &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. ///