Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Mathieu Westphal
KWSys
Commits
093eae34
Commit
093eae34
authored
Mar 17, 2015
by
Sean McBride
Committed by
Brad King
Mar 18, 2015
Browse files
SystemInformation: Fix -Wswitch-enum warnings
Change-Id: Iaa8fda477e06f32f8a1fd7305374d9c6d192a521
parent
20f50727
Changes
1
Hide whitespace changes
Inline
Side-by-side
SystemInformation.cxx
View file @
093eae34
...
...
@@ -1824,6 +1824,7 @@ const char * SystemInformationImplementation::GetVendorID()
return
"Motorola"
;
case
HP
:
return
"Hewlett-Packard"
;
case
UnknownManufacturer
:
default:
return
"Unknown Manufacturer"
;
}
...
...
@@ -3065,6 +3066,12 @@ bool SystemInformationImplementation::RetrieveClassicalCPUIdentity()
case
NSC
:
this
->
ChipID
.
ProcessorName
=
"Cx486SLC
\\
DLC
\\
Cx486S A-Step"
;
break
;
case
Sun
:
case
IBM
:
case
Motorola
:
case
HP
:
case
UnknownManufacturer
:
default:
this
->
ChipID
.
ProcessorName
=
"Unknown family"
;
// We cannot identify the processor.
return
false
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment