diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4f63c43..8cefc3f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,14 +14,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: v22.1.4 + rev: v22.1.5 hooks: - id: clang-format types_or: [c++, c] # CMake linting and formatting - repo: https://github.com/BlankSpruce/gersemi-pre-commit - rev: 0.27.2 + rev: 0.27.4 hooks: - id: gersemi name: CMake linting @@ -42,7 +42,7 @@ repos: # Beman Standard checking via beman-tidy - repo: https://github.com/bemanproject/beman-tidy - rev: v0.3.1 + rev: v0.4.1 hooks: - id: beman-tidy diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a90806..a40b8ed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,11 @@ option( ${PROJECT_IS_TOP_LEVEL} ) -option(BEMAN_STR_SPLIT_USE_MODULES "Provide beman.str_split as a C++ module" OFF) +option( + BEMAN_STR_SPLIT_USE_MODULES + "Provide beman.str_split as a C++ module" + OFF +) if(BEMAN_STR_SPLIT_USE_MODULES) set(CMAKE_CXX_SCAN_FOR_MODULES ON)