1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 23:58:11 +00:00

Kernel: Rename ProcessorInfo::{m_brandstr => m_brand}

There's no need to specify the type of the member in it's name,
especially not in shorthand format.
This commit is contained in:
Idan Horowitz 2022-01-11 13:49:09 +02:00
parent be81278634
commit f9528f1882
4 changed files with 5 additions and 5 deletions

View file

@ -20,7 +20,7 @@ class Processor;
class ProcessorInfo {
Processor& m_processor;
String m_cpuid;
String m_brandstr;
String m_brand;
NonnullOwnPtr<KString> m_features;
u32 m_display_model;
u32 m_display_family;
@ -32,7 +32,7 @@ public:
ProcessorInfo(Processor& processor);
const String& cpuid() const { return m_cpuid; }
const String& brandstr() const { return m_brandstr; }
const String& brand() const { return m_brand; }
StringView features() const { return m_features->view(); }
u32 display_model() const { return m_display_model; }
u32 display_family() const { return m_display_family; }