diff --git a/include/sirit/sirit.h b/include/sirit/sirit.h index e8e7689..aee03b6 100644 --- a/include/sirit/sirit.h +++ b/include/sirit/sirit.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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #pragma once diff --git a/src/common_types.h b/src/common_types.h index 49ea096..4916cca 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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #pragma once @@ -21,8 +21,6 @@ using s32 = std::int32_t; using s64 = std::int64_t; using sptr = std::intptr_t; -using size_t = std::size_t; - using f32 = float; using f64 = double; static_assert(sizeof(f32) == sizeof(u32), "f32 must be 32 bits wide"); diff --git a/src/op.cpp b/src/op.cpp index f8e87bc..a197126 100644 --- a/src/op.cpp +++ b/src/op.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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #include diff --git a/src/op.h b/src/op.h index 847ae0d..5209eb4 100644 --- a/src/op.h +++ b/src/op.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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #pragma once diff --git a/src/opcodes.h b/src/opcodes.h index b0ae6f4..47159da 100644 --- a/src/opcodes.h +++ b/src/opcodes.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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #pragma once diff --git a/src/opcodes/constant.cpp b/src/opcodes/constant.cpp index 92fb5f5..15a59d9 100644 --- a/src/opcodes/constant.cpp +++ b/src/opcodes/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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #include diff --git a/src/opcodes/flow.cpp b/src/opcodes/flow.cpp index eeaf031..2351cd5 100644 --- a/src/opcodes/flow.cpp +++ b/src/opcodes/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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #include "sirit/sirit.h" diff --git a/src/opcodes/function.cpp b/src/opcodes/function.cpp index a2c9efb..da2f932 100644 --- a/src/opcodes/function.cpp +++ b/src/opcodes/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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #include "sirit/sirit.h" diff --git a/src/opcodes/type.cpp b/src/opcodes/type.cpp index 82ba35e..afae9fd 100644 --- a/src/opcodes/type.cpp +++ b/src/opcodes/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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #include diff --git a/src/operand.cpp b/src/operand.cpp index b14b8ed..8c4329e 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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #include diff --git a/src/operand.h b/src/operand.h index 71f3a63..8bb5127 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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #pragma once diff --git a/src/sirit.cpp b/src/sirit.cpp index a3952ce..faec175 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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #include diff --git a/src/stream.cpp b/src/stream.cpp index 21d474b..a1144aa 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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #include "stream.h" diff --git a/src/stream.h b/src/stream.h index 8cc6cb7..a87676d 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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #pragma once diff --git a/tests/main.cpp b/tests/main.cpp index a4590e4..f793f01 100644 --- a/tests/main.cpp +++ b/tests/main.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 2 or any later version. + * Lesser General Public License version 2.1 or any later version. */ #include