Skip to content

Commit

Permalink
yarpDeviceParamParserGenerator: fix for clang compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
randaz81 committed Feb 10, 2024
1 parent 3e5d0a7 commit 0865472
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public:\n";
s << S_TAB1 << " int major = "<< std::to_string(MACRO_PARSER_VERSION_MAJOR) << ";\n";
s << S_TAB1 << " int minor = "<< std::to_string(MACRO_PARSER_VERSION_MINOR) << ";\n";
s << S_TAB1 << "};\n";
s << S_TAB1 << "const parser_version_type m_parser_version;\n";
s << S_TAB1 << "const parser_version_type m_parser_version = {};\n";

for (const auto& param : m_params)
{
Expand Down

0 comments on commit 0865472

Please sign in to comment.