mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Eliminate a PVS-studio false positive warning
This commit is contained in:
parent
350882d592
commit
dd4c8617e2
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ static inline int GetNumVectorElements(VectorSize sz) {
|
|||
case V_Pair: return 2;
|
||||
case V_Triple: return 3;
|
||||
case V_Quad: return 4;
|
||||
default: return 0;
|
||||
default: return 1; // let's not confuse static analyzers more than necessary. Anyway, in reality this is unreachable.
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue