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 {