mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 21:08:12 +00:00
Kernel: Remove unused ProcessorInfo::m_processor field
This commit is contained in:
parent
f9528f1882
commit
b4ce1e2e62
2 changed files with 3 additions and 5 deletions
|
@ -12,9 +12,8 @@
|
|||
|
||||
namespace Kernel {
|
||||
|
||||
ProcessorInfo::ProcessorInfo(Processor& processor)
|
||||
: m_processor(processor)
|
||||
, m_features(m_processor.features_string())
|
||||
ProcessorInfo::ProcessorInfo(Processor const& processor)
|
||||
: m_features(processor.features_string())
|
||||
{
|
||||
u32 max_leaf;
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue