diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-14 17:59:29 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-12-14 17:59:29 -0600 |
commit | c7b43428d243a231cc351cf5b5f7f12ebe4a931a (patch) | |
tree | 136a0cbd64cb3c01280d227a174a8cd86cc5736a /ui/qt5/runner | |
parent | 3085857acd10ba4976f99273c89864f8ab8c5132 (diff) | |
download | horizon-c7b43428d243a231cc351cf5b5f7f12ebe4a931a.tar.gz horizon-c7b43428d243a231cc351cf5b5f7f12ebe4a931a.tar.bz2 horizon-c7b43428d243a231cc351cf5b5f7f12ebe4a931a.tar.xz horizon-c7b43428d243a231cc351cf5b5f7f12ebe4a931a.zip |
Qt UI: Runner: arm64 doesn't understand assert(false) means noreturn; so return something
Diffstat (limited to 'ui/qt5/runner')
-rw-r--r-- | ui/qt5/runner/executepage.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/qt5/runner/executepage.cc b/ui/qt5/runner/executepage.cc index fd9581e..6338e26 100644 --- a/ui/qt5/runner/executepage.cc +++ b/ui/qt5/runner/executepage.cc @@ -105,6 +105,7 @@ ExecutePage::Phase ExecutePage::stepToPhase(QString step) { if(step == "pkgdb") return Pkg; if(step == "post-metadata") return PostMeta; Q_ASSERT(false); + return Prepare; } void ExecutePage::labelsForPhase(Phase phase, QLabel **icon, QLabel **text) { |