clang-tools
8.0.0
llvm.src
tools
clang
tools
extra
clang-tidy
misc
UnconventionalAssignOperatorCheck.h
Go to the documentation of this file.
1
//===--- UnconventionalAssignOperatorCheck.h - clang-tidy -------*- C++ -*-===//
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
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_ASSIGNOPERATORSIGNATURECHECK_H
11
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_ASSIGNOPERATORSIGNATURECHECK_H
12
13
#include "../ClangTidy.h"
14
15
namespace
clang
{
16
namespace
tidy {
17
namespace
misc {
18
19
/// Finds declarations of assignment operators with the wrong return and/or
20
/// argument types and definitions with good return type but wrong return
21
/// statements.
22
///
23
/// * The return type must be `Class&`.
24
/// * Works with move-assign and assign by value.
25
/// * Private and deleted operators are ignored.
26
/// * The operator must always return ``*this``.
27
///
28
/// For the user-facing documentation see:
29
/// http://clang.llvm.org/extra/clang-tidy/checks/misc-unconventional-assign-operator.html
30
class
UnconventionalAssignOperatorCheck
:
public
ClangTidyCheck
{
31
public
:
32
UnconventionalAssignOperatorCheck
(StringRef
Name
,
ClangTidyContext
*Context)
33
:
ClangTidyCheck
(Name, Context) {}
34
void
registerMatchers
(ast_matchers::MatchFinder *Finder)
override
;
35
void
check
(
const
ast_matchers::MatchFinder::MatchResult &
Result
)
override
;
36
};
37
38
}
// namespace misc
39
}
// namespace tidy
40
}
// namespace clang
41
42
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_ASSIGNOPERATORSIGNATURECHECK_H
clang::tidy::misc::UnconventionalAssignOperatorCheck::UnconventionalAssignOperatorCheck
UnconventionalAssignOperatorCheck(StringRef Name, ClangTidyContext *Context)
Definition:
UnconventionalAssignOperatorCheck.h:32
clang::tidy::misc::UnconventionalAssignOperatorCheck::registerMatchers
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
Definition:
UnconventionalAssignOperatorCheck.cpp:20
clang::tidy::ClangTidyCheck
Base class for all clang-tidy checks.
Definition:
ClangTidy.h:127
clang::tidy::misc::UnconventionalAssignOperatorCheck::check
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
Definition:
UnconventionalAssignOperatorCheck.cpp:72
Name
static constexpr llvm::StringLiteral Name
Definition:
UppercaseLiteralSuffixCheck.cpp:28
Result
llvm::Optional< llvm::Expected< tooling::AtomicChanges > > Result
Definition:
ClangdServer.cpp:60
clang::tidy::misc::UnconventionalAssignOperatorCheck
Finds declarations of assignment operators with the wrong return and/or argument types and definition...
Definition:
UnconventionalAssignOperatorCheck.h:30
clang
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
Definition:
ChangeNamespace.cpp:18
clang::tidy::ClangTidyContext
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Definition:
ClangTidyDiagnosticConsumer.h:100
Generated on Thu Feb 28 2019 09:32:56 for clang-tools by
1.8.13