You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our current Meson configuration requires users to specify empty list entries within dictionaries when they are not applicable. To make the configuration smaller, we can use dict.get() with a default empty list value instead of trying to access using bracket notation
Component(s)
C++
The text was updated successfully, but these errors were encountered:
### Rationale for this change
This change cuts down on the verbosity of the Meson configuration
### What changes are included in this PR?
dict.get() with an empty list default value is used in lieu of requiring every dictionary to create keys with empty list values, where applicable
### Are these changes tested?
Yes
### Are there any user-facing changes?
No
* GitHub Issue: #45775
Authored-by: Will Ayd <william.ayd@icloud.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
Describe the enhancement requested
Our current Meson configuration requires users to specify empty list entries within dictionaries when they are not applicable. To make the configuration smaller, we can use
dict.get()
with a default empty list value instead of trying to access using bracket notationComponent(s)
C++
The text was updated successfully, but these errors were encountered: