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: 4 additions & 0 deletions .beman-tidy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

ignored_paths:
- include/beman/iterator_interface/detail/stl_interfaces/
1 change: 1 addition & 0 deletions .github/workflows/pre-commit-check.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
name: Lint Check (pre-commit)

on:
Expand Down
1 change: 1 addition & 0 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
# MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md
# Disable inline html linter is needed for <details> <summary>
MD033: false
Expand Down
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
Expand Down
2 changes: 1 addition & 1 deletion cmake/CompilerFeatureTest.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
# cmake-format: off
# cmake/CompilerFeatureTest.cmake -*-cmake-*-
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
# cmake-format: on

# Functions that determine compiler capabilities
Expand Down
2 changes: 1 addition & 1 deletion examples/filter_int_iterator.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// examples/filter_int_iterator.cpp -*-C++-*-
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// examples/filter_int_iterator.cpp -*-C++-*-

// [P2727](https://wg21.link/P2727) example:
// An iterator that allows filtering int elements of a sequence.
Expand Down
2 changes: 1 addition & 1 deletion examples/repeated_chars_iterator.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// examples/repeated_chars_iterator.cpp -*-C++-*-
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// examples/repeated_chars_iterator.cpp -*-C++-*-

// [P2727](https://wg21.link/P2727) example:
// An iterator that allows iterating over repetitions of a sequence of characters.
Expand Down
1 change: 1 addition & 0 deletions include/beman/iterator_interface/config.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef BEMAN_ITERATOR_INTERFACE_CONFIG_HPP
#define BEMAN_ITERATOR_INTERFACE_CONFIG_HPP

Expand Down
2 changes: 1 addition & 1 deletion include/beman/iterator_interface/iterator_interface.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// include/beman/iterator_interface/iterator_interface.hpp -*-C++-*-
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// include/beman/iterator_interface/iterator_interface.hpp -*-C++-*-

#ifndef INCLUDED_ITERATOR_INTERFACE
#define INCLUDED_ITERATOR_INTERFACE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// include/beman/iterator_interface/iterator_interface_access.hpp -*-C++-*-
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// include/beman/iterator_interface/iterator_interface_access.hpp -*-C++-*-

#ifndef ITERATOR_INTERFACE_ACCESSS_HPP
#define ITERATOR_INTERFACE_ACCESSS_HPP
Expand Down
1 change: 1 addition & 0 deletions infra/.github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
name: Lint Check (pre-commit)

on:
Expand Down
1 change: 1 addition & 0 deletions infra/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
Expand Down
1 change: 1 addition & 0 deletions infra/cmake/BuildTelemetry.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
include_guard(GLOBAL)

include(${CMAKE_CURRENT_LIST_DIR}/BuildTelemetryConfig.cmake)
Expand Down
1 change: 1 addition & 0 deletions infra/cmake/BuildTelemetryConfig.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
include_guard(GLOBAL)

set(BUILD_TELEMETRY_DIR ${CMAKE_CURRENT_LIST_DIR})
Expand Down
1 change: 1 addition & 0 deletions infra/cmake/telemetry.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

set -o nounset
set -o errexit
Expand Down
1 change: 1 addition & 0 deletions infra/cmake/use-fetch-content.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
cmake_minimum_required(VERSION 3.24)

include(FetchContent)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// tests/beman/iterator_interface/iterator_interfaces.test.cpp -*-C++-*-
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// tests/beman/iterator_interface/iterator_interfaces.test.cpp -*-C++-*-

#include <beman/iterator_interface/iterator_interface.hpp>
#include <beman/iterator_interface/iterator_interface.hpp>
Expand Down
Loading