xref: /llvm-project/clang-tools-extra/clang-tidy/cert/VariadicFunctionDefCheck.cpp (revision fd3a3b3f291cb93d6779a0c0670a43d97579ab99)
1 //===--- VariadicfunctiondefCheck.cpp - clang-tidy-------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #include "VariadicFunctionDefCheck.h"
11 #include "clang/AST/ASTContext.h"
12 #include "clang/ASTMatchers/ASTMatchFinder.h"
13 
14 using namespace clang::ast_matchers;
15 
16 namespace clang {
17 namespace tidy {
18 
19 void VariadicFunctionDefCheck::registerMatchers(MatchFinder *Finder) {
20   if (!getLangOpts().CPlusPlus)
21     return;
22 
23   // We only care about function *definitions* that are variadic, and do not
24   // have extern "C" language linkage.
25   Finder->addMatcher(
26       functionDecl(isDefinition(), isVariadic(), unless(isExternC()))
27           .bind("func"),
28       this);
29 }
30 
31 void VariadicFunctionDefCheck::check(const MatchFinder::MatchResult &Result) {
32   const auto *FD = Result.Nodes.getNodeAs<FunctionDecl>("func");
33 
34   diag(FD->getLocation(),
35        "do not define a C-style variadic function; consider using a function "
36        "parameter pack or currying instead");
37 }
38 
39 } // namespace tidy
40 } // namespace clang
41 
42