mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 15:03:12 +02:00
Trim else after return
This commit is contained in:
parent
388a70502e
commit
ad1a98b85a
1 changed files with 26 additions and 26 deletions
|
@ -544,34 +544,34 @@ TestFilter::TestFilter(const QString& filterString) {
|
|||
if (foundCategoryIt == propertyToProfileCategory.cend()) {
|
||||
error = "Invalid test filter property '" + referenceVariant + "'";
|
||||
return;
|
||||
} else {
|
||||
ProfileCategory selectedFilterCategory = foundCategoryIt->second;
|
||||
for (auto allowedVariantIt = ++(allowedVariants.cbegin()); allowedVariantIt != allowedVariants.cend(); ++allowedVariantIt) {
|
||||
auto& currentVariant = *allowedVariantIt;
|
||||
auto nextCategoryIt = propertyToProfileCategory.find(currentVariant);
|
||||
if (nextCategoryIt == propertyToProfileCategory.cend()) {
|
||||
error = "Invalid test filter property '" + referenceVariant + "'";
|
||||
return;
|
||||
}
|
||||
auto& currentCategory = nextCategoryIt->second;
|
||||
if (currentCategory != selectedFilterCategory) {
|
||||
error = "Mismatched comma-separated test filter properties '" + referenceVariant + "' and '" + currentVariant + "'";
|
||||
return;
|
||||
}
|
||||
// List of comma-separated test property variants is consistent so far
|
||||
}
|
||||
}
|
||||
|
||||
switch (selectedFilterCategory) {
|
||||
case ProfileCategory::TIER:
|
||||
allowedTiers.insert(allowedTiers.cend(), allowedVariants.cbegin(), allowedVariants.cend());
|
||||
break;
|
||||
case ProfileCategory::OS:
|
||||
allowedOperatingSystems.insert(allowedOperatingSystems.cend(), allowedVariants.cbegin(), allowedVariants.cend());
|
||||
break;
|
||||
case ProfileCategory::GPU:
|
||||
allowedGPUs.insert(allowedGPUs.cend(), allowedVariants.cbegin(), allowedVariants.cend());
|
||||
break;
|
||||
ProfileCategory selectedFilterCategory = foundCategoryIt->second;
|
||||
for (auto allowedVariantIt = ++(allowedVariants.cbegin()); allowedVariantIt != allowedVariants.cend(); ++allowedVariantIt) {
|
||||
auto& currentVariant = *allowedVariantIt;
|
||||
auto nextCategoryIt = propertyToProfileCategory.find(currentVariant);
|
||||
if (nextCategoryIt == propertyToProfileCategory.cend()) {
|
||||
error = "Invalid test filter property '" + referenceVariant + "'";
|
||||
return;
|
||||
}
|
||||
auto& currentCategory = nextCategoryIt->second;
|
||||
if (currentCategory != selectedFilterCategory) {
|
||||
error = "Mismatched comma-separated test filter properties '" + referenceVariant + "' and '" + currentVariant + "'";
|
||||
return;
|
||||
}
|
||||
// List of comma-separated test property variants is consistent so far
|
||||
}
|
||||
|
||||
switch (selectedFilterCategory) {
|
||||
case ProfileCategory::TIER:
|
||||
allowedTiers.insert(allowedTiers.cend(), allowedVariants.cbegin(), allowedVariants.cend());
|
||||
break;
|
||||
case ProfileCategory::OS:
|
||||
allowedOperatingSystems.insert(allowedOperatingSystems.cend(), allowedVariants.cbegin(), allowedVariants.cend());
|
||||
break;
|
||||
case ProfileCategory::GPU:
|
||||
allowedGPUs.insert(allowedGPUs.cend(), allowedVariants.cbegin(), allowedVariants.cend());
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue