From 452034ef6b3cfec5f95752bbe0ed37f689f81639 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Fri, 27 Oct 2023 03:57:09 -0700 Subject: [PATCH] chore: rename ExplicitThisptr files to uppercase --- CMakeLists.txt | 2 +- src/{explicit_thisptr.cpp => ExplicitThisptr.cpp} | 2 +- src/{explicit_thisptr.hpp => ExplicitThisptr.hpp} | 0 src/lib.cpp | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{explicit_thisptr.cpp => ExplicitThisptr.cpp} (95%) rename src/{explicit_thisptr.hpp => ExplicitThisptr.hpp} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 92842bc..f077a2d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/src/explicit_thisptr.cpp b/src/ExplicitThisptr.cpp similarity index 95% rename from src/explicit_thisptr.cpp rename to src/ExplicitThisptr.cpp index 74da349..6cbdc0f 100644 --- a/src/explicit_thisptr.cpp +++ b/src/ExplicitThisptr.cpp @@ -1,4 +1,4 @@ -#include "explicit_thisptr.hpp" +#include "ExplicitThisptr.hpp" namespace clang::tidy::tidyfox { using namespace ast_matchers; diff --git a/src/explicit_thisptr.hpp b/src/ExplicitThisptr.hpp similarity index 100% rename from src/explicit_thisptr.hpp rename to src/ExplicitThisptr.hpp diff --git a/src/lib.cpp b/src/lib.cpp index 7a72da4..60ef5ed 100644 --- a/src/lib.cpp +++ b/src/lib.cpp @@ -1,7 +1,7 @@ #include #include -#include "explicit_thisptr.hpp" +#include "ExplicitThisptr.hpp" namespace clang::tidy::tidyfox {