Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ repos:
# This brings in a portable version of clang-format.
# See also: https://github.com/ssciwr/clang-format-wheel
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v21.1.6
rev: v21.1.7
hooks:
- id: clang-format
types_or: [c++, c]

# CMake linting and formatting
- repo: https://github.com/BlankSpruce/gersemi
rev: 0.23.2
rev: 0.24.0
hooks:
- id: gersemi
name: CMake linting
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# beman.transform_join_view: Beman transform_join_view library
# beman.transform_join_view: Beman transform_join_view library
5 changes: 4 additions & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ message("Examples to be built: ${ALL_EXAMPLES}")

foreach(example ${ALL_EXAMPLES})
add_executable(beman.transform_join_view.examples.${example})
target_sources(beman.transform_join_view.examples.${example} PRIVATE ${example}.cpp)
target_sources(
beman.transform_join_view.examples.${example}
PRIVATE ${example}.cpp
)
target_link_libraries(
beman.transform_join_view.examples.${example}
PRIVATE beman::transform_join_view
Expand Down
5 changes: 1 addition & 4 deletions examples/transform_view_join_direct_usage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,4 @@

namespace exe = beman::transform_join_view;

int main() {

return 0;
}
int main() { return 0; }
6 changes: 1 addition & 5 deletions include/beman/transform_join_view/identity.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
#ifndef BEMAN_TRANSFORM_JOIN_VIEW_IDENTITY_HPP
#define BEMAN_TRANSFORM_JOIN_VIEW_IDENTITY_HPP


namespace beman::transform_join_view {


} // namespace beman::transform_join_view
namespace beman::transform_join_view {} // namespace beman::transform_join_view

#endif // BEMAN_TRANSFORM_JOIN_VIEW_IDENTITY_HPP
5 changes: 4 additions & 1 deletion tests/beman/transform_join_view/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ FetchContent_Declare(
FetchContent_MakeAvailable(Catch2)

add_executable(beman.transform_join_view.tests)
target_sources(beman.transform_join_view.tests PRIVATE transform_view_join.test.cpp)
target_sources(
beman.transform_join_view.tests
PRIVATE transform_view_join.test.cpp
)
target_link_libraries(
beman.transform_join_view.tests
PRIVATE beman::transform_join_view Catch2::Catch2WithMain
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,4 @@

namespace exe = beman::transform_join_view;

TEST_CASE("placeholder test", "[transform_join_view]") {
REQUIRE(true);
}
TEST_CASE("placeholder test", "[transform_join_view]") { REQUIRE(true); }
Loading