Conversation
There was a problem hiding this comment.
Pull request overview
This pull request adds conditional compilation directives to differentiate behavior between RDKB and non-RDKB platforms in the RFC (Runtime Feature Control) configuration handling code.
Changes:
- Wraps empty value validation in conditional compilation so it only applies to non-RDKB platforms
- Wraps account ID validation logic in conditional compilation so it only applies to non-RDKB platforms
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| else | ||
| { | ||
|
|
||
| #if !defined(RDKB_SUPPORT) |
There was a problem hiding this comment.
Remove trailing whitespace/tabs at the end of this preprocessor directive line. Trailing whitespace can cause inconsistencies in code formatting and version control diffs.
| } | ||
|
|
||
| #endif | ||
|
|
There was a problem hiding this comment.
Remove this line containing only whitespace/tabs. Empty lines with whitespace can cause code formatting inconsistencies and should be replaced with a truly blank line.
| } | ||
| else | ||
| { | ||
| #if !defined(RDKB_SUPPORT) |
There was a problem hiding this comment.
Remove trailing whitespace/tabs at the end of this preprocessor directive line. Trailing whitespace can cause inconsistencies in code formatting and version control diffs.
No description provided.