clang-tools
15.0.0git
llvm-project
clang-tools-extra
clang-tidy
misc
NonCopyableObjects.h
Go to the documentation of this file.
1
//===--- NonCopyableObjects.h - clang-tidy-----------------------*- C++ -*-===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_NONCOPYABLEOBJECTS_H
10
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_NONCOPYABLEOBJECTS_H
11
12
#include "../ClangTidyCheck.h"
13
14
namespace
clang
{
15
namespace
tidy {
16
namespace
misc {
17
18
/// The check flags dereferences and non-pointer declarations of objects that
19
/// are not meant to be passed by value, such as C FILE objects.
20
class
NonCopyableObjectsCheck
:
public
ClangTidyCheck
{
21
public
:
22
NonCopyableObjectsCheck
(StringRef
Name
,
ClangTidyContext
*Context)
23
:
ClangTidyCheck
(
Name
, Context) {}
24
void
registerMatchers
(ast_matchers::MatchFinder *Finder)
override
;
25
void
check
(
const
ast_matchers::MatchFinder::MatchResult &Result)
override
;
26
};
27
28
}
// namespace misc
29
}
// namespace tidy
30
}
// namespace clang
31
32
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_NONCOPYABLEOBJECTS_H
clang::tidy::misc::NonCopyableObjectsCheck
The check flags dereferences and non-pointer declarations of objects that are not meant to be passed ...
Definition:
NonCopyableObjects.h:20
clang::tidy::ClangTidyCheck
Base class for all clang-tidy checks.
Definition:
ClangTidyCheck.h:53
clang::tidy::misc::NonCopyableObjectsCheck::registerMatchers
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
Definition:
NonCopyableObjects.cpp:20
clang::tidy::misc::NonCopyableObjectsCheck::NonCopyableObjectsCheck
NonCopyableObjectsCheck(StringRef Name, ClangTidyContext *Context)
Definition:
NonCopyableObjects.h:22
clang::tidy::ClangTidyContext
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Definition:
ClangTidyDiagnosticConsumer.h:66
Name
Token Name
Definition:
MacroToEnumCheck.cpp:89
clang::tidy::misc::NonCopyableObjectsCheck::check
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
Definition:
NonCopyableObjects.cpp:54
clang
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
Definition:
ApplyReplacements.h:27
Generated on Tue May 17 2022 03:42:04 for clang-tools by
1.8.17