Skip to content

Commit f6744d9

Browse files
committed
Changed copyright header comment format, updated copyright year.
1 parent db1f07d commit f6744d9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+75
-87
lines changed

Readme.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Home page with detailed description: [https://www.nayuki.io/page/reference-arith
1414
License
1515
-------
1616

17-
Copyright © 2022 Project Nayuki. (MIT License)
17+
Copyright © 2023 Project Nayuki. (MIT License)
1818

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

cpp/AdaptiveArithmeticCompress.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@
99
* decompressor have synchronized states, so that the data can be decompressed properly.
1010
*
1111
* Copyright (c) Project Nayuki
12-
*
12+
* MIT License. See readme file.
1313
* https://www.nayuki.io/page/reference-arithmetic-coding
14-
* https://github.com/nayuki/Reference-arithmetic-coding
1514
*/
1615

1716
#include <cstdint>

cpp/AdaptiveArithmeticDecompress.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
* This decompresses files generated by the "AdaptiveArithmeticCompress" application.
66
*
77
* Copyright (c) Project Nayuki
8-
*
8+
* MIT License. See readme file.
99
* https://www.nayuki.io/page/reference-arithmetic-coding
10-
* https://github.com/nayuki/Reference-arithmetic-coding
1110
*/
1211

1312
#include <cstdint>

cpp/ArithmeticCoder.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Reference arithmetic coding
3-
* Copyright (c) Project Nayuki
43
*
4+
* Copyright (c) Project Nayuki
5+
* MIT License. See readme file.
56
* https://www.nayuki.io/page/reference-arithmetic-coding
6-
* https://github.com/nayuki/Reference-arithmetic-coding
77
*/
88

99
#include <limits>

cpp/ArithmeticCoder.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Reference arithmetic coding
3-
* Copyright (c) Project Nayuki
43
*
4+
* Copyright (c) Project Nayuki
5+
* MIT License. See readme file.
56
* https://www.nayuki.io/page/reference-arithmetic-coding
6-
* https://github.com/nayuki/Reference-arithmetic-coding
77
*/
88

99
#pragma once

cpp/ArithmeticCompress.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@
88
* of 256 symbol frequencies, and then followed by the arithmetic-coded data.
99
*
1010
* Copyright (c) Project Nayuki
11-
*
11+
* MIT License. See readme file.
1212
* https://www.nayuki.io/page/reference-arithmetic-coding
13-
* https://github.com/nayuki/Reference-arithmetic-coding
1413
*/
1514

1615
#include <cstdint>

cpp/ArithmeticDecompress.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
* This decompresses files generated by the "ArithmeticCompress" application.
66
*
77
* Copyright (c) Project Nayuki
8-
*
8+
* MIT License. See readme file.
99
* https://www.nayuki.io/page/reference-arithmetic-coding
10-
* https://github.com/nayuki/Reference-arithmetic-coding
1110
*/
1211

1312
#include <cstdint>

cpp/BitIoStream.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Reference arithmetic coding
3-
* Copyright (c) Project Nayuki
43
*
4+
* Copyright (c) Project Nayuki
5+
* MIT License. See readme file.
56
* https://www.nayuki.io/page/reference-arithmetic-coding
6-
* https://github.com/nayuki/Reference-arithmetic-coding
77
*/
88

99
#include <limits>

cpp/BitIoStream.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Reference arithmetic coding
3-
* Copyright (c) Project Nayuki
43
*
4+
* Copyright (c) Project Nayuki
5+
* MIT License. See readme file.
56
* https://www.nayuki.io/page/reference-arithmetic-coding
6-
* https://github.com/nayuki/Reference-arithmetic-coding
77
*/
88

99
#pragma once

cpp/FrequencyTable.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Reference arithmetic coding
3-
* Copyright (c) Project Nayuki
43
*
4+
* Copyright (c) Project Nayuki
5+
* MIT License. See readme file.
56
* https://www.nayuki.io/page/reference-arithmetic-coding
6-
* https://github.com/nayuki/Reference-arithmetic-coding
77
*/
88

99
#include <stdexcept>

0 commit comments

Comments
 (0)