mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:38:11 +00:00
Kernel: Convert Processor::features_string() API to KString
This commit is contained in:
parent
f8ad3cc6a0
commit
faf1fa0a84
5 changed files with 39 additions and 39 deletions
|
@ -563,7 +563,7 @@ private:
|
|||
obj.add("family", info.display_family());
|
||||
|
||||
auto features_array = obj.add_array("features");
|
||||
for (auto& feature : info.features().split(' '))
|
||||
for (auto& feature : info.features().split_view(' '))
|
||||
features_array.add(feature);
|
||||
features_array.finish();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue