Skip to content

Commit

Permalink
Replace dashes in file names with underscores
Browse files Browse the repository at this point in the history
  • Loading branch information
oboukli committed Jun 19, 2023
1 parent 2bf97aa commit 09783eb
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
24 changes: 12 additions & 12 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ add_executable(
)

add_executable(
"lc-lru-cache"
"include/forfun/lc-lru-cache.hpp"
"src/lc-lru-cache.cpp"
"test/lc-lru-cache.cpp"
"lc_lru_cache"
"include/forfun/lc_lru_cache.hpp"
"src/lc_lru_cache.cpp"
"test/lc_lru_cache.cpp"
)

add_executable(
Expand All @@ -35,17 +35,17 @@ add_executable(
)

add_executable(
"palindromic-number"
"include/forfun/palindromic-number.hpp"
"src/palindromic-number.cpp"
"test/palindromic-number.cpp"
"palindromic_number"
"include/forfun/palindromic_number.hpp"
"src/palindromic_number.cpp"
"test/palindromic_number.cpp"
)

add_executable(
"project-euler-p0001-multiples-of-3-or-5"
"include/forfun/project-euler/p0001-multiples-of-3-or-5.hpp"
"src/project-euler/p0001-multiples-of-3-or-5.cpp"
"test/project-euler/p0001-multiples-of-3-or-5.cpp"
"project_euler_p0001_multiples_of_3_or_5"
"include/forfun/project_euler/p0001_multiples_of_3_or_5.hpp"
"src/project_euler/p0001_multiples_of_3_or_5.cpp"
"test/project_euler/p0001_multiples_of_3_or_5.cpp"
)

add_executable(
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/lc-lru-cache.cpp → src/lc_lru_cache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// SPDX-License-Identifier: MIT

#include "forfun/lc-lru-cache.hpp"
#include "forfun/lc_lru_cache.hpp"

#include <cassert>

Expand Down
2 changes: 1 addition & 1 deletion src/palindromic-number.cpp → src/palindromic_number.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// SPDX-License-Identifier: MIT

#include "forfun/palindromic-number.hpp"
#include "forfun/palindromic_number.hpp"

#include <cstdlib>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

// SPDX-License-Identifier: MIT

#include "forfun/project-euler/p0001-multiples-of-3-or-5.hpp"
#include "forfun/project_euler/p0001_multiples_of_3_or_5.hpp"
2 changes: 1 addition & 1 deletion test/lc-lru-cache.cpp → test/lc_lru_cache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// SPDX-License-Identifier: MIT

#include "forfun/lc-lru-cache.hpp"
#include "forfun/lc_lru_cache.hpp"

#include <cassert>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// SPDX-License-Identifier: MIT

#include "forfun/palindromic-number.hpp"
#include "forfun/palindromic_number.hpp"

#include <cassert>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// SPDX-License-Identifier: MIT

#include "forfun/project-euler/p0001-multiples-of-3-or-5.hpp"
#include "forfun/project_euler/p0001_multiples_of_3_or_5.hpp"

#include <cassert>

Expand Down

0 comments on commit 09783eb

Please sign in to comment.