-
Notifications
You must be signed in to change notification settings - Fork 2
RDKEMW-12937: Test PR to validate workflow #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -17,6 +17,7 @@ | |||||||
| * limitations under the License. | ||||||||
| */ | ||||||||
|
|
||||||||
|
|
||||||||
| #include "UserSettingsImplementation.h" | ||||||||
| #include <sys/prctl.h> | ||||||||
| #include <regex> | ||||||||
|
|
@@ -25,6 +26,7 @@ | |||||||
| #include <fstream> | ||||||||
| #include "tracing/Logging.h" | ||||||||
|
|
||||||||
|
|
||||||||
|
||||||||
Copilot
AI
Apr 15, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This adds an extra blank line between the includes and the namespace declaration, creating a whitespace-only change and slightly reducing consistency with other files in this module (which typically have a single blank line here). Consider removing the extra empty line to keep diffs clean and formatting consistent.
Copilot
AI
Apr 20, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are now two consecutive blank lines between the include block and the start of the namespace. To keep formatting consistent and reduce diff noise, remove the extra empty line.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are now two consecutive blank lines between the license header and the first include. This appears inconsistent with nearby files (e.g., plugin/UserSettings.cpp keeps a single blank line before includes) and adds unnecessary whitespace—please drop the extra empty line.