Skip to content

Commit 6d2e203

Browse files
authored
Apply the Beman Standard: license related rules (#19)
Apply the Beman Standard: license related rules
1 parent 1a4c1d3 commit 6d2e203

File tree

15 files changed

+42
-3
lines changed

15 files changed

+42
-3
lines changed

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# CMakeLists.txt -*-CMake-*-
2+
#
3+
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4+
15
cmake_minimum_required(VERSION 3.10)
26

37
project(beman_iter_interface VERSION 0.0.0 LANGUAGES CXX)

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#! /usr/bin/make -f
2-
# -*-makefile-*-
2+
# /Makefile -*-makefile-*-
3+
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
34

45
INSTALL_PREFIX?=.install/
56
PROJECT?=$(shell basename $(CURDIR))

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# beman.iterator\_interface: iterator creation mechanisms
22

3+
<!--
4+
SPDX-License-Identifier: 2.0 license with LLVM exceptions
5+
-->
36

47
**Implements**:
58
* [`std::iterator_interface` (P2727)](https://wg21.link/P2727)

examples/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# examples/CMakeLists.txt -*-CMake-*-
2+
#
3+
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4+
15
include(GNUInstallDirs)
26

37
# List of all buildable examples.

examples/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Beman.iterator Examples
22

3+
<!--
4+
SPDX-License-Identifier: 2.0 license with LLVM exceptions
5+
-->
6+
37
List of usage examples for `Beman.iterator`.
48

59
## Sample

examples/sample.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// examples/sample.cpp -*-C++-*-
2+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
3+
14
#include <beman/iterator_interface/iterator_interface.hpp>
25
#include <iostream>
36

include/beman/iterator_interface/config.hpp.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// include/beman/iterator_interface/config.hpp.in -*-C++-*-
2+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
3+
14
#ifndef BEMAN_ITERATOR_INTERFACE_CONFIG_HPP
25
#define BEMAN_ITERATOR_INTERFACE_CONFIG_HPP
36

include/beman/iterator_interface/detail/stl_interfaces/config.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// include/beman/iterator_interface/detail/stl_interfaces/config.hpp -*-C++-*-
12
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
23

34
// Copyright (C) 2020 T. Zachary Laine

include/beman/iterator_interface/detail/stl_interfaces/fwd.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// include/beman/iterator_interface/detail/stl_interfaces/fwd.hpp -*-C++-*-
12
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
23

34
// Copyright (C) 2019 T. Zachary Laine

include/beman/iterator_interface/detail/stl_interfaces/iterator_interface.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// include/beman/iterator_interface/detail/stl_interfaces/iterator_interface.hpp -*-C++-*-
12
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
23

34
// Copyright (C) 2019 T. Zachary Laine

0 commit comments

Comments
 (0)