mirror of https://github.com/microsoft/clang.git
Make helpers static. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@294838 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
068460e748
commit
e577660ee1
|
@ -14,6 +14,7 @@ using namespace clang;
|
|||
using clang::analyze_os_log::OSLogBufferItem;
|
||||
using clang::analyze_os_log::OSLogBufferLayout;
|
||||
|
||||
namespace {
|
||||
class OSLogFormatStringHandler
|
||||
: public analyze_format_string::FormatStringHandler {
|
||||
private:
|
||||
|
@ -165,6 +166,7 @@ public:
|
|||
}
|
||||
}
|
||||
};
|
||||
} // end anonymous namespace
|
||||
|
||||
bool clang::analyze_os_log::computeOSLogBufferLayout(
|
||||
ASTContext &Ctx, const CallExpr *E, OSLogBufferLayout &Layout) {
|
||||
|
|
|
@ -2336,7 +2336,7 @@ static Sema::TemplateDeductionResult ConvertDeducedTemplateArguments(
|
|||
return Sema::TDK_Success;
|
||||
}
|
||||
|
||||
DeclContext *getAsDeclContextOrEnclosing(Decl *D) {
|
||||
static DeclContext *getAsDeclContextOrEnclosing(Decl *D) {
|
||||
if (auto *DC = dyn_cast<DeclContext>(D))
|
||||
return DC;
|
||||
return D->getDeclContext();
|
||||
|
@ -2436,7 +2436,7 @@ FinishTemplateArgumentDeduction(
|
|||
/// Complete template argument deduction for a class or variable template,
|
||||
/// when partial ordering against a partial specialization.
|
||||
// FIXME: Factor out duplication with partial specialization version above.
|
||||
Sema::TemplateDeductionResult FinishTemplateArgumentDeduction(
|
||||
static Sema::TemplateDeductionResult FinishTemplateArgumentDeduction(
|
||||
Sema &S, TemplateDecl *Template, bool PartialOrdering,
|
||||
const TemplateArgumentList &TemplateArgs,
|
||||
SmallVectorImpl<DeducedTemplateArgument> &Deduced,
|
||||
|
|
Loading…
Reference in New Issue