fune/build/clang-plugin/NoExplicitMoveConstructorChecker.cpp
Nika Layzell 7086a045e0 Bug 1743020 - Part 1: Opt third-party paths out of NoExplicitMoveConstructor checker, r=andi
The function2 library uses an explicit move constructor internally,
which would trigger this checker, and cause a build failure.

Differential Revision: https://phabricator.services.mozilla.com/D145689
2022-06-02 13:24:09 +00:00

25 lines
892 B
C++

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "NoExplicitMoveConstructorChecker.h"
#include "CustomMatchers.h"
void NoExplicitMoveConstructorChecker::registerMatchers(
MatchFinder *AstMatcher) {
AstMatcher->addMatcher(
cxxConstructorDecl(isExplicitMoveConstructor(), isFirstParty())
.bind("node"),
this);
}
void NoExplicitMoveConstructorChecker::check(
const MatchFinder::MatchResult &Result) {
// Everything we needed to know was checked in the matcher - we just report
// the error here
const CXXConstructorDecl *D =
Result.Nodes.getNodeAs<CXXConstructorDecl>("node");
diag(D->getLocation(), "Move constructors may not be marked explicit",
DiagnosticIDs::Error);
}