Merge pull request #4034 from zhaowenlan1779/port-yuzu-802

Port "wait_tree: Silence warning about all code paths not returning a value" from yuzu
This commit is contained in:
Merry 2018-07-30 12:38:24 +01:00 committed by GitHub
commit 45beea31ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@
#include "citra_qt/debugger/wait_tree.h"
#include "citra_qt/util/util.h"
#include "common/assert.h"
#include "core/hle/kernel/event.h"
#include "core/hle/kernel/mutex.h"
#include "core/hle/kernel/semaphore.h"
@ -117,6 +118,8 @@ QString WaitTreeWaitObject::GetResetTypeQString(Kernel::ResetType reset_type) {
case Kernel::ResetType::Pulse:
return tr("pulse");
}
UNREACHABLE();
return {};
}
WaitTreeObjectList::WaitTreeObjectList(