chore: rename ExplicitThisptr files to uppercase

This commit is contained in:
outfoxxed 2023-10-27 03:57:09 -07:00
parent 1851f17e29
commit 452034ef6b
Signed by: outfoxxed
GPG Key ID: 4C88A185FB89301E
4 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ find_package(Clang REQUIRED)
add_library(tidyfox MODULE
src/lib.cpp
src/explicit_thisptr.cpp
src/ExplicitThisptr.cpp
)
target_link_libraries(tidyfox PRIVATE clang-tidy)

View File

@ -1,4 +1,4 @@
#include "explicit_thisptr.hpp"
#include "ExplicitThisptr.hpp"
namespace clang::tidy::tidyfox {
using namespace ast_matchers;

View File

@ -1,7 +1,7 @@
#include <clang-tidy/ClangTidyModule.h>
#include <clang-tidy/ClangTidyModuleRegistry.h>
#include "explicit_thisptr.hpp"
#include "ExplicitThisptr.hpp"
namespace clang::tidy::tidyfox {