Minor warning fixes

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2022-04-15 12:16:20 +02:00 committed by Alexander Borsuk
parent e8a8f8a515
commit 6e0a3c70e9
6 changed files with 5 additions and 20 deletions

View file

@ -152,7 +152,7 @@ bool Transliteration::Transliterate(std::string_view sv, int8_t langCode,
if (transliteratorsIds.empty())
return false;
icu::UnicodeString ustr(sv.data(), sv.size());
icu::UnicodeString ustr(sv.data(), static_cast<int32_t>(sv.size()));
for (auto const & id : transliteratorsIds)
Transliterate(id, ustr);

View file

@ -25,8 +25,6 @@ using namespace std;
namespace
{
size_t const kFakeNamesCount = 2;
bool ExtractName(StringUtf8Multilang const & names, int8_t const langCode,
vector<osm::LocalizedName> & result)
{

View file

@ -36,8 +36,6 @@ extension BookmarksManagerListener: BookmarksObserver {
callback(.empty)
case .archiveError, .fileError:
callback(.error)
@unknown default:
fatalError()
}
}
}

View file

@ -90,6 +90,8 @@ class Checkmark: UIControl {
top = floor((bounds.height - height) / 2)
case .fill:
height = bounds.height
@unknown default:
fatalError("Unexpected case in contentVerticalAlignment switch")
}
imageView.frame = CGRect(x: left, y: top, width: width, height: height)

View file

@ -51,6 +51,7 @@ final class BackgroundFetchScheduler: NSObject {
case .newData: return 3
case .noData: return 1
case .failed: return 2
@unknown default: fatalError("Unexpected case in UIBackgroundFetchResult switch")
}
}
}

View file

@ -43,25 +43,11 @@ using namespace power_management;
selectedCell.accessoryType = UITableViewCellAccessoryCheckmark;
_selectedCell = selectedCell;
NSString * statisticValue = @"";
Scheme scheme = Scheme::None;
Scheme scheme = Scheme::Auto;
if ([selectedCell isEqual:self.never])
{
statisticValue = @"never";
scheme = Scheme::Normal;
}
else if ([selectedCell isEqual:self.manualMax])
{
statisticValue = @"max";
scheme = Scheme::EconomyMaximum;
}
else if ([selectedCell isEqual:self.automatic])
{
statisticValue = @"auto";
scheme = Scheme::Auto;
}
CHECK_NOT_EQUAL(scheme, Scheme::None, ());
GetFramework().GetPowerManager().SetScheme(scheme);
}