Suppress warnings for unhandled enum values

This commit is contained in:
Berkus Decker 2017-11-20 22:27:21 +02:00 committed by Berkus Decker
parent 0f1254586c
commit 941b306f7a
8 changed files with 12 additions and 0 deletions

View File

@ -1468,6 +1468,7 @@ namespace {
return nullptr;
}
} break;
case PeerData::NotLoaded: break;
}
return i.value();
}

View File

@ -43,6 +43,7 @@ QString getButtonText(MediaOverviewType type, int count) {
case OverviewFiles: return lng_profile_files(lt_count, count);
case OverviewVoiceFiles: return lng_profile_audios(lt_count, count);
case OverviewLinks: return lng_profile_shared_links(lt_count, count);
case OverviewChatPhotos: case OverviewCount: return QString(); // temp
}
return QString();
}

View File

@ -20,6 +20,8 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
*/
#pragma once
#include <cassert>
void InitFromCommandLine(int argc, char *argv[]);
extern bool gDebug;
@ -144,6 +146,8 @@ T convertScale(T v) {
case dbisOneAndQuarter: return qRound(float64(v) * 1.25 - 0.01);
case dbisOneAndHalf: return qRound(float64(v) * 1.5 - 0.01);
case dbisTwo: return v * 2;
case dbisAuto: case dbisOne: return v;
case dbisScaleCount: assert(false); // temp
}
return v;
}

View File

@ -91,6 +91,7 @@ void DownloadPathState::paintEvent(QPaintEvent *e) {
case State::Clearing: return lang(lng_download_path_clearing);
case State::Cleared: return lang(lng_download_path_cleared);
case State::ClearFailed: return lang(lng_download_path_clear_failed);
case State::Empty: case State::Exists: assert(false); // temp
}
return QString();
})();

View File

@ -39,6 +39,7 @@ QString scaleLabel(DBIScale scale) {
case dbisOneAndQuarter: return qsl("125%");
case dbisOneAndHalf: return qsl("150%");
case dbisTwo: return qsl("200%");
case dbisAuto: case dbisScaleCount: assert(false); // temp
}
return QString();
}
@ -74,6 +75,7 @@ void ScaleWidget::onAutoChanged() {
case dbisOneAndQuarter: newScale = dbisOne; break;
case dbisOneAndHalf: newScale = dbisOneAndQuarter; break;
case dbisTwo: newScale = dbisOneAndHalf; break;
case dbisAuto: case dbisScaleCount: assert(false); // temp
}
}
}

View File

@ -96,6 +96,7 @@ QSize readGeneratedSize(const IconMask *mask, DBIScale scale) {
case dbisOneAndQuarter: return QSize(pxAdjust(width, 5), pxAdjust(height, 5));
case dbisOneAndHalf: return QSize(pxAdjust(width, 6), pxAdjust(height, 6));
case dbisTwo: return QSize(width * 2, height * 2);
case dbisAuto: case dbisScaleCount: assert(false); // temp
}
} else {
Unexpected("Bad data in generated icon!");

View File

@ -595,6 +595,7 @@ public:
auto &link = links[lnkIndex - maxLnkIndex - 1];
ClickHandlerPtr handler;
switch (link.type) {
case EntityInTextInvalid: case EntityInTextBold: case EntityInTextItalic: assert(false); // temp
case EntityInTextCustomUrl: handler = MakeShared<HiddenUrlClickHandler>(link.data); break;
case EntityInTextEmail:
case EntityInTextUrl: handler = MakeShared<UrlClickHandler>(link.data, link.displayStatus == LinkDisplayedFull); break;

View File

@ -1514,6 +1514,7 @@ MTPVector<MTPMessageEntity> EntitiesToMTP(const EntitiesInText &entities, Conver
auto offset = MTP_int(entity.offset());
auto length = MTP_int(entity.length());
switch (entity.type()) {
case EntityInTextInvalid: assert(false); // temp
case EntityInTextUrl: v.push_back(MTP_messageEntityUrl(offset, length)); break;
case EntityInTextCustomUrl: v.push_back(MTP_messageEntityTextUrl(offset, length, MTP_string(entity.data()))); break;
case EntityInTextEmail: v.push_back(MTP_messageEntityEmail(offset, length)); break;