Skip to content

Commit 0835fcf

Browse files
committed
Update Compiler Explorer link
Also updated SPDX identifier Signed-off-by: Ted Lyngmo <[email protected]>
1 parent 4646640 commit 0835fcf

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
1+
# SPDX-License-Identifier: MIT
22

33
cmake_minimum_required(VERSION 3.25)
44

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# beman.timed\_lock\_alg : Timed lock algorithms for multiple lockables
22

33
<!--
4-
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4+
SPDX-License-Identifier: MIT
55
-->
66

77
<!-- markdownlint-disable-next-line line-length -->
8-
![Library Status](https://raw.githubusercontent.com/bemanproject/beman/refs/heads/main/images/badges/beman_badge-beman_library_production_ready_api_may_undergo_changes.svg) ![Continuous Integration Tests](https://github.com/bemanproject/timed_lock_alg/actions/workflows/ci_tests.yml/badge.svg) ![Lint Check (pre-commit)](https://github.com/bemanproject/timed_lock_alg/actions/workflows/pre-commit.yml/badge.svg) [![Coverage](https://coveralls.io/repos/github/bemanproject/timed_lock_alg/badge.svg?branch=main)](https://coveralls.io/github/bemanproject/timed_lock_alg?branch=main) ![Standard Target](https://github.com/bemanproject/beman/blob/main/images/badges/cpp29.svg) [![Compiler Explorer Example](https://img.shields.io/badge/Try%20it%20on%20Compiler%20Explorer-grey?logo=compilerexplorer&logoColor=67c52a)](https://godbolt.org/z/4qEPK87va)
8+
![Library Status](https://raw.githubusercontent.com/bemanproject/beman/refs/heads/main/images/badges/beman_badge-beman_library_production_ready_api_may_undergo_changes.svg) ![Continuous Integration Tests](https://github.com/bemanproject/timed_lock_alg/actions/workflows/ci_tests.yml/badge.svg) ![Lint Check (pre-commit)](https://github.com/bemanproject/timed_lock_alg/actions/workflows/pre-commit.yml/badge.svg) [![Coverage](https://coveralls.io/repos/github/bemanproject/timed_lock_alg/badge.svg?branch=main)](https://coveralls.io/github/bemanproject/timed_lock_alg?branch=main) ![Standard Target](https://github.com/bemanproject/beman/blob/main/images/badges/cpp29.svg) [![Compiler Explorer Example](https://img.shields.io/badge/Try%20it%20on%20Compiler%20Explorer-grey?logo=compilerexplorer&logoColor=67c52a)](https://godbolt.org/z/3reh77M53)
99

1010
`beman.timed_lock_alg` implements timed lock algorithms for multiple lockables.
1111

examples/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
1+
# SPDX-License-Identifier: MIT
22

33
set(ALL_EXAMPLES try_lock_a_bunch)
44

src/beman/timed_lock_alg/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
1+
# SPDX-License-Identifier: MIT
22

33
add_library(beman.timed_lock_alg)
44
add_library(beman::timed_lock_alg ALIAS beman.timed_lock_alg)

src/beman/timed_lock_alg/mutex.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
1+
// SPDX-License-Identifier: MIT
22

33
#include <beman/timed_lock_alg/mutex.hpp>

tests/beman/timed_lock_alg/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
1+
# SPDX-License-Identifier: MIT
22

33
find_package(GTest REQUIRED)
44

tests/beman/timed_lock_alg/mutex.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
1+
// SPDX-License-Identifier: MIT
22

33
#include <beman/timed_lock_alg/mutex.hpp>
44

0 commit comments

Comments
 (0)