Skip to content

Commit 58606f0

Browse files
committed
Fix copyright
Set actual copyright dates
1 parent 751b18d commit 58606f0

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
22
SPDX-License-Identifier: MIT
33

4-
Copyright (c) 2020 Yury Kalmykov <y_kalmykov@mail.ru>.
4+
Copyright (c) 2020-2021 Yury Kalmykov <y_kalmykov@mail.ru>.
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ class long_int_t; // signed integer
2020
```
2121
where native_t may be one of base unsigned type and size must by power of two.
2222
## Implementation
23-
* [long_int.h](include/long_int.h) - long signed integer class
24-
* [long_uint.h](include/long_uint.h) - long unsigned integer class
25-
* [long_math.h](include/long_math.h) - crossplatform helper classes and functions
26-
* [long_math_gcc.h](include/long_math_gcc.h) - GCC, CLANG helper classes and functions
27-
* [long_math_msvc.h](include/long_math_msvc.h) - MSVC helper classes and functions
23+
* [long_int.h](include/slimcpplib/long_int.h) - long signed integer class
24+
* [long_uint.h](include/slimcpplib/long_uint.h) - long unsigned integer class
25+
* [long_math.h](include/slimcpplib/long_math.h) - crossplatform helper classes and functions
26+
* [long_math_gcc.h](include/slimcpplib/long_math_gcc.h) - GCC, CLANG helper classes and functions
27+
* [long_math_msvc.h](include/slimcpplib/long_math_msvc.h) - MSVC helper classes and functions
2828
## Integration
2929
The library implements four predefined types: uint128_t, uint256_t, int128_t, int256_t. You can use them in you project by include code below:
3030
```c++

include/slimcpplib/long_int.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
99
// SPDX-License-Identifier: MIT
1010
//
11-
// Copyright (c) 2020 Yury Kalmykov <y_kalmykov@mail.ru>.
11+
// Copyright (c) 2020-2021 Yury Kalmykov <y_kalmykov@mail.ru>.
1212
//
1313
// Permission is hereby granted, free of charge, to any person obtaining a copy
1414
// of this software and associated documentation files (the "Software"), to deal

include/slimcpplib/long_math.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
99
// SPDX-License-Identifier: MIT
1010
//
11-
// Copyright (c) 2020 Yury Kalmykov <y_kalmykov@mail.ru>.
11+
// Copyright (c) 2020-2021 Yury Kalmykov <y_kalmykov@mail.ru>.
1212
//
1313
// Permission is hereby granted, free of charge, to any person obtaining a copy
1414
// of this software and associated documentation files (the "Software"), to deal

include/slimcpplib/long_math_gcc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
99
// SPDX-License-Identifier: MIT
1010
//
11-
// Copyright (c) 2020 Yury Kalmykov <y_kalmykov@mail.ru>.
11+
// Copyright (c) 2020-2021 Yury Kalmykov <y_kalmykov@mail.ru>.
1212
//
1313
// Permission is hereby granted, free of charge, to any person obtaining a copy
1414
// of this software and associated documentation files (the "Software"), to deal

include/slimcpplib/long_math_msvc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
99
// SPDX-License-Identifier: MIT
1010
//
11-
// Copyright (c) 2020 Yury Kalmykov <y_kalmykov@mail.ru>.
11+
// Copyright (c) 2020-2021 Yury Kalmykov <y_kalmykov@mail.ru>.
1212
//
1313
// Permission is hereby granted, free of charge, to any person obtaining a copy
1414
// of this software and associated documentation files (the "Software"), to deal

include/slimcpplib/long_uint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
99
// SPDX-License-Identifier: MIT
1010
//
11-
// Copyright (c) 2020 Yury Kalmykov <y_kalmykov@mail.ru>.
11+
// Copyright (c) 2020-2021 Yury Kalmykov <y_kalmykov@mail.ru>.
1212
//
1313
// Permission is hereby granted, free of charge, to any person obtaining a copy
1414
// of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)