Add missing breaks for QNX cache counting (#1012)

This commit is contained in:
Dominic Hamon 2020-07-30 09:51:48 +01:00 committed by GitHub
parent 9901011880
commit 1302d2ce09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -384,9 +384,11 @@ std::vector<CPUInfo::CacheInfo> GetCacheSizesQNX() {
case CACHE_FLAG_UNIFIED :
info.type = "Unified";
info.level = 2;
break;
case CACHE_FLAG_SHARED :
info.type = "Shared";
info.level = 3;
break;
default :
continue;
break;