[cfe-commits] r160051 - /cfe/trunk/include/clang/Frontend/CompilerInvocation.h
Nico Weber
nicolasweber at gmx.de
Wed Jul 11 09:15:04 PDT 2012
Author: nico
Date: Wed Jul 11 11:15:04 2012
New Revision: 160051
URL: http://llvm.org/viewvc/llvm-project?rev=160051&view=rev
Log:
Remove unused override of CompilerInvocation::setLangDefaults().
Modified:
cfe/trunk/include/clang/Frontend/CompilerInvocation.h
Modified: cfe/trunk/include/clang/Frontend/CompilerInvocation.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Frontend/CompilerInvocation.h?rev=160051&r1=160050&r2=160051&view=diff
==============================================================================
--- cfe/trunk/include/clang/Frontend/CompilerInvocation.h (original)
+++ cfe/trunk/include/clang/Frontend/CompilerInvocation.h Wed Jul 11 11:15:04 2012
@@ -132,16 +132,6 @@
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.
More information about the cfe-commits
mailing list