aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2012-07-11 16:15:04 +0000
committerNico Weber <nicolasweber@gmx.de>2012-07-11 16:15:04 +0000
commit202c0541b69cab612bf0aceb49ddd8bb11199c8d (patch)
tree82afd484303e5b1dabf0d33a4befa3239827b143
parent9903e94bee8fbbec6d44fe2de91ccee46f40187f (diff)
Remove unused override of CompilerInvocation::setLangDefaults().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160051 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Frontend/CompilerInvocation.h10
1 files changed, 0 insertions, 10 deletions
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
@@ -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.