Skip to content

Commit ec7b437

Browse files
committed
Release 2023-06-20
2 parents 00ba8f2 + 421b3dd commit ec7b437

File tree

1,257 files changed

+1972
-1308
lines changed

Some content is hidden

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

1,257 files changed

+1972
-1308
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ configuration:
1818
- Release
1919

2020
environment:
21-
COMMS_BRANCH: v5.2
22-
COMMSDSL_BRANCH: v6.1
21+
COMMS_BRANCH: v5.2.1
22+
COMMSDSL_BRANCH: v6.2
2323
matrix:
2424
- CPP_STD: 11
2525
- CPP_STD: 14

.github/workflows/actions_build.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Github Actions Build
33
on: [push]
44

55
env:
6-
COMMS_BRANCH: v5.2
7-
COMMSDSL_BRANCH: v6.1
6+
COMMS_BRANCH: v5.2.1
7+
COMMSDSL_BRANCH: v6.2
88

99
jobs:
1010

@@ -172,8 +172,8 @@ jobs:
172172
VERBOSE: 1
173173

174174

175-
build_clang_ubuntu_18_04:
176-
runs-on: ubuntu-18.04
175+
build_clang_old_ubuntu_20_04:
176+
runs-on: ubuntu-20.04
177177
strategy:
178178
fail-fast: false
179179
matrix:
@@ -187,6 +187,11 @@ jobs:
187187
steps:
188188
- uses: actions/checkout@v2
189189

190+
- name: Add repositories
191+
run: |
192+
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu/ bionic main'; \
193+
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu/ bionic universe'
194+
190195
- name: Prepare Install
191196
run: sudo apt-get update --fix-missing
192197

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ option (FORCE_EXTRA_BOOST_LIBS "Force linking to extra boost libraries" OFF)
77
option (USE_SANITIZERS "Compile with sanitizers." OFF)
88

99
set (CMAKE_CXX_STANDARD 11 CACHE STRING "The C++ standard to use")
10-
set (MIN_COMMSDSL_VERSION "6.1")
10+
set (MIN_COMMSDSL_VERSION "6.2")
1111

1212
include(GNUInstallDirs)
1313

howtos/howto1/include/howto1/Interface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Interface"</b> interface class.

howtos/howto1/include/howto1/InterfaceCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto1/include/howto1/MsgId.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of message ids enumeration.

howtos/howto1/include/howto1/Version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains protocol version definition.
@@ -22,5 +22,5 @@ inline constexpr unsigned specVersion()
2222
} // namespace howto1
2323

2424
// Generated compile time check for minimal supported version of the COMMS library
25-
static_assert(COMMS_MAKE_VERSION(5, 2, 0) <= comms::version(),
25+
static_assert(COMMS_MAKE_VERSION(5, 2, 1) <= comms::version(),
2626
"The version of COMMS library is too old");

howtos/howto1/include/howto1/dispatch/DispatchClientInputMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains dispatch to handling function(s) for client input input messages.

howtos/howto1/include/howto1/dispatch/DispatchMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains dispatch to handling function(s) for all input messages.

howtos/howto1/include/howto1/dispatch/DispatchServerInputMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains dispatch to handling function(s) for client input input messages.

howtos/howto1/include/howto1/factory/AllMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains message factory with dynamic memory allocation for all the messages.

howtos/howto1/include/howto1/factory/ClientInputMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains message factory with dynamic memory allocation for the client input messages.

howtos/howto1/include/howto1/factory/ServerInputMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains message factory with dynamic memory allocation for the server input messages.

howtos/howto1/include/howto1/field/FieldBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of base class of all the fields.

howtos/howto1/include/howto1/field/InterfaceFlags.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of <b>"InterfaceFlags"</b> field.

howtos/howto1/include/howto1/field/InterfaceFlagsCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto1/include/howto1/field/MsgId.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of <b>"MsgId"</b> field.

howtos/howto1/include/howto1/field/MsgIdCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto1/include/howto1/frame/Frame.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Frame"</b> frame class.

howtos/howto1/include/howto1/frame/FrameCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto1/include/howto1/input/AllMessages.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of the AllMessages messages bundle.

howtos/howto1/include/howto1/input/ClientInputMessages.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of the ClientInputMessages messages bundle.

howtos/howto1/include/howto1/input/ServerInputMessages.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of the ServerInputMessages messages bundle.

howtos/howto1/include/howto1/message/Msg1.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Message 1"</b> message and its fields.

howtos/howto1/include/howto1/message/Msg1Common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto1/include/howto1/message/Msg2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Message 2"</b> message and its fields.

howtos/howto1/include/howto1/message/Msg2Common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto1/include/howto1/options/AllMessagesDynMemMsgFactoryDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of protocol all messages dynamic memory allocation message factory options.

howtos/howto1/include/howto1/options/BareMetalDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of protocol bare metal default options.

howtos/howto1/include/howto1/options/ClientDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of protocol client default options.

howtos/howto1/include/howto1/options/ClientInputMessagesDynMemMsgFactoryDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of protocol client input messages dynamic memory allocation message factory options.

howtos/howto1/include/howto1/options/DataViewDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of protocol data view default options.

howtos/howto1/include/howto1/options/DefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of protocol default options.

howtos/howto1/include/howto1/options/ServerDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of protocol server default options.

howtos/howto1/include/howto1/options/ServerInputMessagesDynMemMsgFactoryDefaultOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of protocol server input messages dynamic memory allocation message factory options.

howtos/howto10/include/howto10/Interface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Interface"</b> interface class.

howtos/howto10/include/howto10/InterfaceCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto10/include/howto10/MsgId.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of message ids enumeration.

howtos/howto10/include/howto10/Version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains protocol version definition.
@@ -22,5 +22,5 @@ inline constexpr unsigned specVersion()
2222
} // namespace howto10
2323

2424
// Generated compile time check for minimal supported version of the COMMS library
25-
static_assert(COMMS_MAKE_VERSION(5, 2, 0) <= comms::version(),
25+
static_assert(COMMS_MAKE_VERSION(5, 2, 1) <= comms::version(),
2626
"The version of COMMS library is too old");

howtos/howto10/include/howto10/dispatch/DispatchClientInputMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains dispatch to handling function(s) for client input input messages.

howtos/howto10/include/howto10/dispatch/DispatchMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains dispatch to handling function(s) for all input messages.

howtos/howto10/include/howto10/dispatch/DispatchServerInputMessage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains dispatch to handling function(s) for client input input messages.

howtos/howto10/include/howto10/factory/AllMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains message factory with dynamic memory allocation for all the messages.

howtos/howto10/include/howto10/factory/ClientInputMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains message factory with dynamic memory allocation for the client input messages.

howtos/howto10/include/howto10/factory/ServerInputMessagesDynMemMsgFactory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains message factory with dynamic memory allocation for the server input messages.

howtos/howto10/include/howto10/field/FieldBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of base class of all the fields.

howtos/howto10/include/howto10/field/Flags.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Flags"</b> field.

howtos/howto10/include/howto10/field/FlagsCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto10/include/howto10/field/MsgId.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of <b>"MsgId"</b> field.

howtos/howto10/include/howto10/field/MsgIdCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto10/include/howto10/frame/Frame.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Frame"</b> frame class.

howtos/howto10/include/howto10/frame/FrameCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto10/include/howto10/input/AllMessages.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of the AllMessages messages bundle.

howtos/howto10/include/howto10/input/ClientInputMessages.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of the ClientInputMessages messages bundle.

howtos/howto10/include/howto10/input/ServerInputMessages.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of the ServerInputMessages messages bundle.

howtos/howto10/include/howto10/message/Msg1.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Message 1"</b> message and its fields.

howtos/howto10/include/howto10/message/Msg1Common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains common template parameters independent functionality of

howtos/howto10/include/howto10/message/Msg2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by commsdsl2comms v6.1.0
1+
// Generated by commsdsl2comms v6.2.0
22

33
/// @file
44
/// @brief Contains definition of <b>"Message 2"</b> message and its fields.

0 commit comments

Comments
 (0)