From b93926744b55f6d5cb9a515ab4014b2fdd05e461 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Mon, 3 Jun 2024 14:55:17 -0500 Subject: [PATCH] lowercase source files --- include/dtl/{Diff.hpp => diff.hpp} | 4 ++-- include/dtl/{Diff3.hpp => diff3.hpp} | 2 +- include/dtl/dtl.hpp | 10 +++++----- include/dtl/{Lcs.hpp => lcs.hpp} | 2 +- include/dtl/{Sequence.hpp => sequence.hpp} | 0 include/dtl/{Ses.hpp => ses.hpp} | 2 +- test/CMakeLists.txt | 10 +++++----- test/{Intdifftest.cpp => intdifftest.cpp} | 0 test/{Objdifftest.cpp => objdifftest.cpp} | 0 test/{Patchtest.cpp => patchtest.cpp} | 0 test/{Strdiff3test.cpp => strdiff3test.cpp} | 0 test/{Strdifftest.cpp => strdifftest.cpp} | 0 12 files changed, 15 insertions(+), 15 deletions(-) rename include/dtl/{Diff.hpp => diff.hpp} (99%) rename include/dtl/{Diff3.hpp => diff3.hpp} (99%) rename include/dtl/{Lcs.hpp => lcs.hpp} (98%) rename include/dtl/{Sequence.hpp => sequence.hpp} (100%) rename include/dtl/{Ses.hpp => ses.hpp} (99%) rename test/{Intdifftest.cpp => intdifftest.cpp} (100%) rename test/{Objdifftest.cpp => objdifftest.cpp} (100%) rename test/{Patchtest.cpp => patchtest.cpp} (100%) rename test/{Strdiff3test.cpp => strdiff3test.cpp} (100%) rename test/{Strdifftest.cpp => strdifftest.cpp} (100%) diff --git a/include/dtl/Diff.hpp b/include/dtl/diff.hpp similarity index 99% rename from include/dtl/Diff.hpp rename to include/dtl/diff.hpp index 8f1ee4c..b262b84 100644 --- a/include/dtl/Diff.hpp +++ b/include/dtl/diff.hpp @@ -38,9 +38,9 @@ #ifndef DTL_DIFF_H #define DTL_DIFF_H -#include "dtl/Lcs.hpp" -#include "dtl/Ses.hpp" #include "dtl/functors.hpp" +#include "dtl/lcs.hpp" +#include "dtl/ses.hpp" #include "dtl/variables.hpp" namespace dtl { diff --git a/include/dtl/Diff3.hpp b/include/dtl/diff3.hpp similarity index 99% rename from include/dtl/Diff3.hpp rename to include/dtl/diff3.hpp index 70dffc9..4ba0b57 100644 --- a/include/dtl/Diff3.hpp +++ b/include/dtl/diff3.hpp @@ -38,7 +38,7 @@ #ifndef DTL_DIFF3_H #define DTL_DIFF3_H -#include "dtl/Diff.hpp" +#include "dtl/diff.hpp" namespace dtl { diff --git a/include/dtl/dtl.hpp b/include/dtl/dtl.hpp index 1f0a691..7aa00e5 100644 --- a/include/dtl/dtl.hpp +++ b/include/dtl/dtl.hpp @@ -36,12 +36,12 @@ #ifndef DTL_H #define DTL_H -#include "dtl/Diff.hpp" -#include "dtl/Diff3.hpp" -#include "dtl/Lcs.hpp" -#include "dtl/Sequence.hpp" -#include "dtl/Ses.hpp" +#include "dtl/diff.hpp" +#include "dtl/diff3.hpp" #include "dtl/functors.hpp" +#include "dtl/lcs.hpp" +#include "dtl/sequence.hpp" +#include "dtl/ses.hpp" #include "dtl/variables.hpp" #endif // DTL_H diff --git a/include/dtl/Lcs.hpp b/include/dtl/lcs.hpp similarity index 98% rename from include/dtl/Lcs.hpp rename to include/dtl/lcs.hpp index 4b4a4c5..d27b8dd 100644 --- a/include/dtl/Lcs.hpp +++ b/include/dtl/lcs.hpp @@ -38,7 +38,7 @@ #ifndef DTL_LCS_H #define DTL_LCS_H -#include "dtl/Sequence.hpp" +#include "dtl/sequence.hpp" namespace dtl { diff --git a/include/dtl/Sequence.hpp b/include/dtl/sequence.hpp similarity index 100% rename from include/dtl/Sequence.hpp rename to include/dtl/sequence.hpp diff --git a/include/dtl/Ses.hpp b/include/dtl/ses.hpp similarity index 99% rename from include/dtl/Ses.hpp rename to include/dtl/ses.hpp index ca44762..057e03d 100644 --- a/include/dtl/Ses.hpp +++ b/include/dtl/ses.hpp @@ -41,8 +41,8 @@ #include #include +#include "dtl/sequence.hpp" #include "dtl/variables.hpp" -#include "dtl/Sequence.hpp" namespace dtl { diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 2a73724..e33a61b 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -2,13 +2,13 @@ enable_testing() find_package(GTest REQUIRED) add_executable(dtl_test - test/Intdifftest.cpp - test/Objdifftest.cpp - test/Patchtest.cpp - test/Strdiff3test.cpp - test/Strdifftest.cpp test/dtl_test.cpp test/dtl_test_common.cpp + test/intdifftest.cpp + test/objdifftest.cpp + test/patchtest.cpp + test/strdiff3test.cpp + test/strdifftest.cpp ) target_include_directories(dtl_test BEFORE PRIVATE diff --git a/test/Intdifftest.cpp b/test/intdifftest.cpp similarity index 100% rename from test/Intdifftest.cpp rename to test/intdifftest.cpp diff --git a/test/Objdifftest.cpp b/test/objdifftest.cpp similarity index 100% rename from test/Objdifftest.cpp rename to test/objdifftest.cpp diff --git a/test/Patchtest.cpp b/test/patchtest.cpp similarity index 100% rename from test/Patchtest.cpp rename to test/patchtest.cpp diff --git a/test/Strdiff3test.cpp b/test/strdiff3test.cpp similarity index 100% rename from test/Strdiff3test.cpp rename to test/strdiff3test.cpp diff --git a/test/Strdifftest.cpp b/test/strdifftest.cpp similarity index 100% rename from test/Strdifftest.cpp rename to test/strdifftest.cpp