llvm/clang-tools-extra/clang-tidy/hicpp/SignedBitwiseCheck.cpp

//===--- SignedBitwiseCheck.cpp - clang-tidy-------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "SignedBitwiseCheck.h"
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include "clang/ASTMatchers/ASTMatchers.h"

usingnamespaceclang::ast_matchers;
usingnamespaceclang::ast_matchers::internal;

namespace clang::tidy::hicpp {

SignedBitwiseCheck::SignedBitwiseCheck(StringRef Name,
                                       ClangTidyContext *Context)
    :{}

void SignedBitwiseCheck::storeOptions(ClangTidyOptions::OptionMap &Opts) {}

void SignedBitwiseCheck::registerMatchers(MatchFinder *Finder) {}

void SignedBitwiseCheck::check(const MatchFinder::MatchResult &Result) {}

} // namespace clang::tidy::hicpp