Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/validate_interface_headers_incremental.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,9 @@ def validate_header(file_path, issues, ids_lines):
break

# Extract struct members
struct_member_pattern = re.compile(r'struct\s+(EXTERNAL\s+)?' + struct_name + r'\s*(:\s*(public|private|protected)\s+[\w:]+)?\s*{([\s\S]*?)\s*};')
struct_content = struct_member_pattern.search(content)
struct_member_pattern = re.compile(r'struct\s+(EXTERNAL\s+)?' + re.escape(struct_name) + r'\s*(?:[:]\s*(public|private|protected)\s+[\w:]+)?\s*{([\s\S]*?)\s*};', re.MULTILINE)
struct_match = struct_member_pattern.search(content)
struct_content =struct_match.group(3)
if struct_content:
struct_members = struct_content.group(4).split('\n')
inside_multiline_comment = False
Expand Down
2 changes: 1 addition & 1 deletion apis/AppManager/IAppManager.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* If not stated otherwise in this file or this component's LICENSE file the
* following copyright and licenses apply:
* following copyright and li censes apply:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @agampa263 : Please remove the space in "li censes". I think this will fix the BD/C blocks.

*
* Copyright 2024 RDK Management
*
Expand Down
Loading