diff options
author | ReinUsesLisp <[email protected]> | 2019-07-14 18:48:59 -0300 |
---|---|---|
committer | ReinUsesLisp <[email protected]> | 2019-07-14 18:50:44 -0300 |
commit | 60a856d2669bde23f9a4a0fb3879ec89a16d904e (patch) | |
tree | 0f22c9d1a90b34760a0ab69d9b0c34e232505208 /src | |
parent | 1e665afa361d0c91b2b3a226a1c537d0b504ca11 (diff) | |
download | sirit-60a856d2669bde23f9a4a0fb3879ec89a16d904e.tar.gz sirit-60a856d2669bde23f9a4a0fb3879ec89a16d904e.zip |
Relicense to The BSD 3-clause license
Diffstat (limited to 'src')
-rw-r--r-- | src/common_types.h | 6 | ||||
-rw-r--r-- | src/instructions/annotation.cpp | 6 | ||||
-rw-r--r-- | src/instructions/arithmetic.cpp | 6 | ||||
-rw-r--r-- | src/instructions/bit.cpp | 6 | ||||
-rw-r--r-- | src/instructions/constant.cpp | 6 | ||||
-rw-r--r-- | src/instructions/conversion.cpp | 6 | ||||
-rw-r--r-- | src/instructions/debug.cpp | 6 | ||||
-rw-r--r-- | src/instructions/extension.cpp | 6 | ||||
-rw-r--r-- | src/instructions/flow.cpp | 6 | ||||
-rw-r--r-- | src/instructions/function.cpp | 6 | ||||
-rw-r--r-- | src/instructions/image.cpp | 6 | ||||
-rw-r--r-- | src/instructions/logical.cpp | 6 | ||||
-rw-r--r-- | src/instructions/memory.cpp | 6 | ||||
-rw-r--r-- | src/instructions/misc.cpp | 6 | ||||
-rw-r--r-- | src/instructions/type.cpp | 6 | ||||
-rw-r--r-- | src/literal_number.cpp | 6 | ||||
-rw-r--r-- | src/literal_number.h | 6 | ||||
-rw-r--r-- | src/literal_string.cpp | 6 | ||||
-rw-r--r-- | src/literal_string.h | 6 | ||||
-rw-r--r-- | src/op.cpp | 6 | ||||
-rw-r--r-- | src/op.h | 6 | ||||
-rw-r--r-- | src/operand.cpp | 6 | ||||
-rw-r--r-- | src/operand.h | 6 | ||||
-rw-r--r-- | src/sirit.cpp | 6 | ||||
-rw-r--r-- | src/stream.cpp | 6 | ||||
-rw-r--r-- | src/stream.h | 6 |
26 files changed, 78 insertions, 78 deletions
diff --git a/src/common_types.h b/src/common_types.h index c9e7a19..5c87d94 100644 --- a/src/common_types.h +++ b/src/common_types.h @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #pragma once diff --git a/src/instructions/annotation.cpp b/src/instructions/annotation.cpp index d86da31..da79684 100644 --- a/src/instructions/annotation.cpp +++ b/src/instructions/annotation.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <memory> diff --git a/src/instructions/arithmetic.cpp b/src/instructions/arithmetic.cpp index a95dfba..29e6404 100644 --- a/src/instructions/arithmetic.cpp +++ b/src/instructions/arithmetic.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <memory> diff --git a/src/instructions/bit.cpp b/src/instructions/bit.cpp index 6378760..25f4eff 100644 --- a/src/instructions/bit.cpp +++ b/src/instructions/bit.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <memory> diff --git a/src/instructions/constant.cpp b/src/instructions/constant.cpp index 3af2c11..1d50327 100644 --- a/src/instructions/constant.cpp +++ b/src/instructions/constant.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <cassert> diff --git a/src/instructions/conversion.cpp b/src/instructions/conversion.cpp index fa80904..57d57c9 100644 --- a/src/instructions/conversion.cpp +++ b/src/instructions/conversion.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <memory> diff --git a/src/instructions/debug.cpp b/src/instructions/debug.cpp index 6b08099..abbf02a 100644 --- a/src/instructions/debug.cpp +++ b/src/instructions/debug.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <memory> diff --git a/src/instructions/extension.cpp b/src/instructions/extension.cpp index 07cc37e..a806347 100644 --- a/src/instructions/extension.cpp +++ b/src/instructions/extension.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <memory> diff --git a/src/instructions/flow.cpp b/src/instructions/flow.cpp index 25c1afd..a86b8e1 100644 --- a/src/instructions/flow.cpp +++ b/src/instructions/flow.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <cassert> diff --git a/src/instructions/function.cpp b/src/instructions/function.cpp index c88f82f..3fb1126 100644 --- a/src/instructions/function.cpp +++ b/src/instructions/function.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include "common_types.h" diff --git a/src/instructions/image.cpp b/src/instructions/image.cpp index 2b1d714..6d8cde3 100644 --- a/src/instructions/image.cpp +++ b/src/instructions/image.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include "common_types.h" diff --git a/src/instructions/logical.cpp b/src/instructions/logical.cpp index 4eb7e02..87c5e2e 100644 --- a/src/instructions/logical.cpp +++ b/src/instructions/logical.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <memory> diff --git a/src/instructions/memory.cpp b/src/instructions/memory.cpp index f9eb9bb..baae005 100644 --- a/src/instructions/memory.cpp +++ b/src/instructions/memory.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <cassert> diff --git a/src/instructions/misc.cpp b/src/instructions/misc.cpp index 84defb3..706de63 100644 --- a/src/instructions/misc.cpp +++ b/src/instructions/misc.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <cassert> diff --git a/src/instructions/type.cpp b/src/instructions/type.cpp index e7b7b18..2f2b15a 100644 --- a/src/instructions/type.cpp +++ b/src/instructions/type.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <cassert> diff --git a/src/literal_number.cpp b/src/literal_number.cpp index 036d87d..8f2a20d 100644 --- a/src/literal_number.cpp +++ b/src/literal_number.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <cassert> diff --git a/src/literal_number.h b/src/literal_number.h index abc2741..c0e4bb1 100644 --- a/src/literal_number.h +++ b/src/literal_number.h @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #pragma once diff --git a/src/literal_string.cpp b/src/literal_string.cpp index d340590..b7eb2e3 100644 --- a/src/literal_string.cpp +++ b/src/literal_string.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <functional> diff --git a/src/literal_string.h b/src/literal_string.h index 048d58a..cb05296 100644 --- a/src/literal_string.h +++ b/src/literal_string.h @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #pragma once @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <cassert> @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #pragma once diff --git a/src/operand.cpp b/src/operand.cpp index f45ca3a..4a55417 100644 --- a/src/operand.cpp +++ b/src/operand.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <cassert> diff --git a/src/operand.h b/src/operand.h index f27bc94..85633c7 100644 --- a/src/operand.h +++ b/src/operand.h @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #pragma once diff --git a/src/sirit.cpp b/src/sirit.cpp index c955c8c..50135e3 100644 --- a/src/sirit.cpp +++ b/src/sirit.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include <algorithm> diff --git a/src/stream.cpp b/src/stream.cpp index 8cac8cb..bde6534 100644 --- a/src/stream.cpp +++ b/src/stream.cpp @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #include "stream.h" diff --git a/src/stream.h b/src/stream.h index a61e4f2..bb6c293 100644 --- a/src/stream.h +++ b/src/stream.h @@ -1,7 +1,7 @@ /* This file is part of the sirit project. - * Copyright (c) 2018 ReinUsesLisp - * This software may be used and distributed according to the terms of the GNU - * Lesser General Public License version 3 or any later version. + * Copyright (c) 2019 sirit + * This software may be used and distributed according to the terms of the + * 3-Clause BSD License */ #pragma once |