Skip to content

Commit 499b7bd

Browse files
authored
Merge pull request #62 from neatudarius/fix/file-license-id
fix(file.license_id): add/move SPDX identifiers and exclude stl_interfaces
2 parents a2f272b + 3b3b77f commit 499b7bd

17 files changed

Lines changed: 20 additions & 6 deletions

.beman-tidy.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2+
3+
ignored_paths:
4+
- include/beman/iterator_interface/detail/stl_interfaces/

.github/workflows/pre-commit-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
12
name: Lint Check (pre-commit)
23

34
on:

.markdownlint.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
12
# MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md
23
# Disable inline html linter is needed for <details> <summary>
34
MD033: false

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
12
# See https://pre-commit.com for more information
23
# See https://pre-commit.com/hooks.html for more hooks
34
repos:

cmake/CompilerFeatureTest.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
12
# cmake-format: off
23
# cmake/CompilerFeatureTest.cmake -*-cmake-*-
3-
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
44
# cmake-format: on
55

66
# Functions that determine compiler capabilities

examples/filter_int_iterator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// examples/filter_int_iterator.cpp -*-C++-*-
21
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2+
// examples/filter_int_iterator.cpp -*-C++-*-
33

44
// [P2727](https://wg21.link/P2727) example:
55
// An iterator that allows filtering int elements of a sequence.

examples/repeated_chars_iterator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// examples/repeated_chars_iterator.cpp -*-C++-*-
21
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2+
// examples/repeated_chars_iterator.cpp -*-C++-*-
33

44
// [P2727](https://wg21.link/P2727) example:
55
// An iterator that allows iterating over repetitions of a sequence of characters.

include/beman/iterator_interface/config.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
12
#ifndef BEMAN_ITERATOR_INTERFACE_CONFIG_HPP
23
#define BEMAN_ITERATOR_INTERFACE_CONFIG_HPP
34

include/beman/iterator_interface/iterator_interface.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// include/beman/iterator_interface/iterator_interface.hpp -*-C++-*-
21
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2+
// include/beman/iterator_interface/iterator_interface.hpp -*-C++-*-
33

44
#ifndef INCLUDED_ITERATOR_INTERFACE
55
#define INCLUDED_ITERATOR_INTERFACE

include/beman/iterator_interface/iterator_interface_access.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// include/beman/iterator_interface/iterator_interface_access.hpp -*-C++-*-
21
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2+
// include/beman/iterator_interface/iterator_interface_access.hpp -*-C++-*-
33

44
#ifndef ITERATOR_INTERFACE_ACCESSS_HPP
55
#define ITERATOR_INTERFACE_ACCESSS_HPP

0 commit comments

Comments
 (0)