fix: indentation and unnecessary imports

This commit is contained in:
outfoxxed 2023-10-27 03:16:48 -07:00
parent cb4ae697f7
commit 1851f17e29
Signed by: outfoxxed
GPG Key ID: 4C88A185FB89301E
4 changed files with 1 additions and 7 deletions

View File

@ -8,7 +8,7 @@ add_compile_options(-Wall -Wextra)
# nix workaround
if (CMAKE_EXPORT_COMPILE_COMMANDS)
set(CMAKE_CXX_STANDARD_INCLUDE_DIRECTORIES ${CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES})
set(CMAKE_CXX_STANDARD_INCLUDE_DIRECTORIES ${CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES})
endif()
find_package(Clang REQUIRED)

View File

@ -1,8 +1,5 @@
#include "explicit_thisptr.hpp"
#include <clang/ASTMatchers/ASTMatchFinder.h>
#include <clang/ASTMatchers/ASTMatchers.h>
namespace clang::tidy::tidyfox {
using namespace ast_matchers;

View File

@ -1,7 +1,6 @@
#pragma once
#include <clang-tidy/ClangTidyCheck.h>
#include <clang/ASTMatchers/ASTMatchFinder.h>
namespace clang::tidy::tidyfox {

View File

@ -1,5 +1,3 @@
#include <cstdio>
#include <clang-tidy/ClangTidyModule.h>
#include <clang-tidy/ClangTidyModuleRegistry.h>