Skip to content

Commit 64c5517

Browse files
committed
Release v5.5.1
2 parents 93453fd + 1db30c2 commit 64c5517

208 files changed

Lines changed: 872 additions & 339 deletions

File tree

Some content is hidden

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

include/comms/Assert.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//
2-
// Copyright 2014 - 2025 (C). Alex Robenko. All rights reserved.
2+
// Copyright 2014 - 2026 (C). Alex Robenko. All rights reserved.
3+
//
4+
// SPDX-License-Identifier: MPL-2.0
35
//
46
// This Source Code Form is subject to the terms of the Mozilla Public
57
// License, v. 2.0. If a copy of the MPL was not distributed with this

include/comms/CompileControl.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//
2-
// Copyright 2015 - 2025 (C). Alex Robenko. All rights reserved.
2+
// Copyright 2015 - 2026 (C). Alex Robenko. All rights reserved.
3+
//
4+
// SPDX-License-Identifier: MPL-2.0
35
//
46
// This Source Code Form is subject to the terms of the Mozilla Public
57
// License, v. 2.0. If a copy of the MPL was not distributed with this

include/comms/EmptyHandler.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//
2-
// Copyright 2014 - 2025 (C). Alex Robenko. All rights reserved.
2+
// Copyright 2014 - 2026 (C). Alex Robenko. All rights reserved.
3+
//
4+
// SPDX-License-Identifier: MPL-2.0
35
//
46
// This Source Code Form is subject to the terms of the Mozilla Public
57
// License, v. 2.0. If a copy of the MPL was not distributed with this

include/comms/ErrorStatus.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//
2-
// Copyright 2014 - 2025 (C). Alex Robenko. All rights reserved.
2+
// Copyright 2014 - 2026 (C). Alex Robenko. All rights reserved.
3+
//
4+
// SPDX-License-Identifier: MPL-2.0
35
//
46
// This Source Code Form is subject to the terms of the Mozilla Public
57
// License, v. 2.0. If a copy of the MPL was not distributed with this

include/comms/Field.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//
2-
// Copyright 2014 - 2025 (C). Alex Robenko. All rights reserved.
2+
// Copyright 2014 - 2026 (C). Alex Robenko. All rights reserved.
3+
//
4+
// SPDX-License-Identifier: MPL-2.0
35
//
46
// This Source Code Form is subject to the terms of the Mozilla Public
57
// License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -16,6 +18,7 @@
1618
#include "comms/details/macro_common.h"
1719
#include "comms/util/access.h"
1820

21+
#include <cstddef>
1922
#include <type_traits>
2023

2124
namespace comms

include/comms/GenericHandler.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//
2-
// Copyright 2014 - 2025 (C). Alex Robenko. All rights reserved.
2+
// Copyright 2014 - 2026 (C). Alex Robenko. All rights reserved.
3+
//
4+
// SPDX-License-Identifier: MPL-2.0
35
//
46
// This Source Code Form is subject to the terms of the Mozilla Public
57
// License, v. 2.0. If a copy of the MPL was not distributed with this

include/comms/GenericMessage.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//
2-
// Copyright 2017 - 2025 (C). Alex Robenko. All rights reserved.
2+
// Copyright 2017 - 2026 (C). Alex Robenko. All rights reserved.
3+
//
4+
// SPDX-License-Identifier: MPL-2.0
35
//
46
// This Source Code Form is subject to the terms of the Mozilla Public
57
// License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -14,8 +16,8 @@
1416
#include "comms/MessageBase.h"
1517
#include "comms/options.h"
1618

17-
#include <tuple>
1819
#include <cstdint>
20+
#include <tuple>
1921

2022
namespace comms
2123
{

include/comms/Message.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//
2-
// Copyright 2014 - 2025 (C). Alex Robenko. All rights reserved.
2+
// Copyright 2014 - 2026 (C). Alex Robenko. All rights reserved.
3+
//
4+
// SPDX-License-Identifier: MPL-2.0
35
//
46
// This Source Code Form is subject to the terms of the Mozilla Public
57
// License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -21,8 +23,7 @@
2123
#include "comms/Field.h"
2224
#include "comms/util/type_traits.h"
2325

24-
#include <cstdint>
25-
#include <memory>
26+
#include <cstddef>
2627
#include <type_traits>
2728

2829
namespace comms

include/comms/MessageBase.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//
2-
// Copyright 2014 - 2025 (C). Alex Robenko. All rights reserved.
2+
// Copyright 2014 - 2026 (C). Alex Robenko. All rights reserved.
3+
//
4+
// SPDX-License-Identifier: MPL-2.0
35
//
46
// This Source Code Form is subject to the terms of the Mozilla Public
57
// License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -16,6 +18,9 @@
1618
#include "comms/details/macro_common.h"
1719
#include "comms/details/MessageImplBuilder.h"
1820

21+
#include <cstddef>
22+
#include <type_traits>
23+
1924
namespace comms
2025
{
2126

include/comms/MsgDispatcher.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//
2-
// Copyright 2019 - 2025 (C). Alex Robenko. All rights reserved.
2+
// Copyright 2019 - 2026 (C). Alex Robenko. All rights reserved.
3+
//
4+
// SPDX-License-Identifier: MPL-2.0
35
//
46
// This Source Code Form is subject to the terms of the Mozilla Public
57
// License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -17,6 +19,7 @@
1719
#include "comms/traits.h"
1820
#include "comms/util/type_traits.h"
1921

22+
#include <cstddef>
2023
#include <type_traits>
2124
#include <utility>
2225

0 commit comments

Comments
 (0)